summaryrefslogtreecommitdiff
path: root/Source/UnitTests/Common/CommonFuncsTest.cpp
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2014-08-31 05:52:21 -0700
committerShawn Hoffman <godisgovernment@gmail.com>2014-09-01 21:27:45 -0700
commit839cace5ff15b56afa3a72c86b379c6abc4c0bf6 (patch)
treef4699fa8d840294976b477e16ced2b7d08bf9342 /Source/UnitTests/Common/CommonFuncsTest.cpp
parent0625b5defbd42b72db0003160687c79f8b9c8858 (diff)
msvc: get UnitTests compiling
Choose it from VS or pass /p:RunUnitTests=true to msbuild
Diffstat (limited to 'Source/UnitTests/Common/CommonFuncsTest.cpp')
-rw-r--r--Source/UnitTests/Common/CommonFuncsTest.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/UnitTests/Common/CommonFuncsTest.cpp b/Source/UnitTests/Common/CommonFuncsTest.cpp
index 5fced4c5aa..e9b39b320e 100644
--- a/Source/UnitTests/Common/CommonFuncsTest.cpp
+++ b/Source/UnitTests/Common/CommonFuncsTest.cpp
@@ -13,6 +13,9 @@ TEST(CommonFuncs, ArraySizeMacro)
EXPECT_EQ(4u, ArraySize(test));
EXPECT_EQ(42u, ArraySize(test2));
+
+ (void)test;
+ (void)test2;
}
TEST(CommonFuncs, RoundUpPow2Macro)