summaryrefslogtreecommitdiffstats
path: root/Tests/Simple
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-30 21:28:54 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-30 21:28:54 (GMT)
commitb5695711316c13fe8a828a55c7ebeb4b16c73aa4 (patch)
treed242c5f7562afe80467236427c39339f2123f685 /Tests/Simple
parent23ba00941953edcb9f77d3b283c4d6cbaed51407 (diff)
downloadCMake-b5695711316c13fe8a828a55c7ebeb4b16c73aa4.zip
CMake-b5695711316c13fe8a828a55c7ebeb4b16c73aa4.tar.gz
CMake-b5695711316c13fe8a828a55c7ebeb4b16c73aa4.tar.bz2
ENH: Remove warning
Diffstat (limited to 'Tests/Simple')
-rw-r--r--Tests/Simple/simpleWe.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/Simple/simpleWe.cpp b/Tests/Simple/simpleWe.cpp
index 6bdd583..859e07c 100644
--- a/Tests/Simple/simpleWe.cpp
+++ b/Tests/Simple/simpleWe.cpp
@@ -7,10 +7,11 @@ public:
{
printf("This one has nonstandard extension\n");
}
+ int getnum() { return 0; }
};
int bar()
{
Foo f;
- return 0;
+ return f.getnum();
}