From ad1da3b455da89d42b4728e357ffa1f62f8fd6f0 Mon Sep 17 00:00:00 2001 From: TurinTech Bot Date: Mon, 15 Jul 2024 14:26:08 +0000 Subject: [PATCH] Artemis Changes --- main.cpp | 4 ++-- post_test.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 post_test.sh diff --git a/main.cpp b/main.cpp index b8fa417..36c8e02 100644 --- a/main.cpp +++ b/main.cpp @@ -9,7 +9,7 @@ int main(int argc, char *argv[]) std::vector v; // use a shared ptr - boost::shared_ptr isp(new int(4)); + auto isp = std::make_shared(4); // trivial use of boost filesystem boost::filesystem::path path = "/usr/share/cmake/modules"; @@ -23,4 +23,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