Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ int main(int argc, char *argv[])
std::vector<int> v;

// use a shared ptr
boost::shared_ptr<int> isp(new int(4));
auto isp = std::make_shared<int>(4);

// trivial use of boost filesystem
boost::filesystem::path path = "/usr/share/cmake/modules";
Expand All @@ -23,4 +23,4 @@ int main(int argc, char *argv[])
}

return 0;
}
}
Empty file modified post_test.sh
100755 → 100644
Empty file.