Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

artemis: Proposed changes for increased performance #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
5 changes: 3 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <boost/container/stable_vector.hpp>
#include <iostream>
#include <boost/shared_ptr.hpp>
#include <boost/filesystem.hpp>
Expand All @@ -6,7 +7,7 @@
int main(int argc, char *argv[])
{
std::cout << "Hello Third Party Include!" << std::endl;
std::vector<int> v;
boost::container::stable_vector<int> v;

// use a shared ptr
boost::shared_ptr<int> isp(new int(4));
Expand All @@ -23,4 +24,4 @@ int main(int argc, char *argv[])
}

return 0;
}
}