diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-09-12 13:41:01 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-09-12 13:41:19 +0300 |
| commit | 325ed6288ba58a8a45f3d31a02ccdb17c05a9bf2 (patch) | |
| tree | 801b24b2bb0e5113c6f54e2748c77b5e1dfa39c4 /test cases/frameworks/1 boost/nomod.cpp | |
| parent | 2e585856be042bf5caa2b45d07557405278ee3ae (diff) | |
| download | meson-325ed6288ba58a8a45f3d31a02ccdb17c05a9bf2.tar.gz | |
Can leave Boost modules empty to only use the plain header libraries. Closes #263.
Diffstat (limited to 'test cases/frameworks/1 boost/nomod.cpp')
| -rw-r--r-- | test cases/frameworks/1 boost/nomod.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test cases/frameworks/1 boost/nomod.cpp b/test cases/frameworks/1 boost/nomod.cpp new file mode 100644 index 000000000..7b168816a --- /dev/null +++ b/test cases/frameworks/1 boost/nomod.cpp @@ -0,0 +1,18 @@ +#include<boost/any.hpp> +#include<iostream> + +boost::any get_any() { + boost::any foobar = 3; + return foobar; +} + +int main(int argc, char **argv) { + boost::any result = get_any(); + if(boost::any_cast<int>(result) == 3) { + std::cout << "Everything is fine in the worls.\n"; + return 0; + } else { + std::cout << "Mathematics stopped working.\n"; + return 1; + } +} |
