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

Fix a missing enum definition for 'take' mode #1077

Merged
merged 1 commit into from Mar 13, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion hpx/util/serialize_buffer.hpp
Expand Up @@ -199,8 +199,10 @@ namespace hpx { namespace util
enum init_mode
{
copy = 0, // constructor copies data
reference = 1 // constructor does not copy data and does not
reference = 1, // constructor does not copy data and does not
// manage the lifetime of it
take = 2 // constructor does not copy data but does take
// ownership and manages the lifetime of it
};

serialize_buffer()
Expand Down