Applied default Visual Studio formatting to most files. This is a quick fix for the tabs vs spaces issue that messes up the formatting in any editor (esp. Linux) which handles tabs/spaces differently to Visual Studio. Some parts of the formatting look a bit worse but overall it should be better (or at least more consistent).
I didn't apply the changes to a few macro-heavy files as Visual Studio removes all indentation from macros, whereas the indentation can be handy to see nesting.
This commit is contained in:
@ -32,9 +32,9 @@ using namespace PolyVox;
|
||||
|
||||
void TestRegion::testEquality()
|
||||
{
|
||||
Region reg1(1,2,3,4,5,6);
|
||||
Region reg2(0,0,0,10,20,30);
|
||||
Region reg3(Vector3DInt32(1,2,3), Vector3DInt32(4,5,6));
|
||||
Region reg1(1, 2, 3, 4, 5, 6);
|
||||
Region reg2(0, 0, 0, 10, 20, 30);
|
||||
Region reg3(Vector3DInt32(1, 2, 3), Vector3DInt32(4, 5, 6));
|
||||
|
||||
QCOMPARE(reg1 != reg2, true);
|
||||
QCOMPARE(reg1 == reg3, true);
|
||||
|
Reference in New Issue
Block a user