diff --git a/main.cpp b/main.cpp index b8fa417..7e8181c 100644 --- a/main.cpp +++ b/main.cpp @@ -1,3 +1,6 @@ +#include +#include +#include #include #include #include @@ -9,7 +12,7 @@ int main(int argc, char *argv[]) std::vector v; // use a shared ptr - boost::shared_ptr isp(new int(4)); + std::shared_ptr isp(new int(4)); // trivial use of boost filesystem boost::filesystem::path path = "/usr/share/cmake/modules"; @@ -23,4 +26,4 @@ int main(int argc, char *argv[]) } return 0; -} +} \ No newline at end of file diff --git a/post_test.sh b/post_test.sh old mode 100755 new mode 100644