diff options
Diffstat (limited to 'Tests/LoadCommandOneConfig/LoadedCommand.cxx')
-rw-r--r-- | Tests/LoadCommandOneConfig/LoadedCommand.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Tests/LoadCommandOneConfig/LoadedCommand.cxx b/Tests/LoadCommandOneConfig/LoadedCommand.cxx index c2a3439..65483c8 100644 --- a/Tests/LoadCommandOneConfig/LoadedCommand.cxx +++ b/Tests/LoadCommandOneConfig/LoadedCommand.cxx @@ -1,8 +1,10 @@ +#include "LoadedCommand.h" + int main () { #ifdef CMAKE_IS_FUN - return 0; + return SIZEOF_CHAR-1; #else - return 1; + return SIZEOF_SHORT; #endif } |