diff options
Diffstat (limited to 'qmake/examples/precompile/util.cpp')
-rw-r--r-- | qmake/examples/precompile/util.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qmake/examples/precompile/util.cpp b/qmake/examples/precompile/util.cpp new file mode 100644 index 0000000..6a15452 --- /dev/null +++ b/qmake/examples/precompile/util.cpp @@ -0,0 +1,7 @@ +void util_function_does_nothing() +{ + // Nothing here... + int x = 0; + ++x; +} + |