Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / interprocess / example / doc_node_allocator.cpp
index 25e6083..dcedab4 100644 (file)
@@ -1,6 +1,6 @@
 //////////////////////////////////////////////////////////////////////////////
 //
-// (C) Copyright Ion Gaztanaga 2006-2011. Distributed under the Boost
+// (C) Copyright Ion Gaztanaga 2006-2012. Distributed under the Boost
 // Software License, Version 1.0. (See accompanying file
 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 //
@@ -43,12 +43,12 @@ int main ()
    //Create shared memory
    //<-
    #if 1
-   managed_shared_memory segment(create_only, 
+   managed_shared_memory segment(create_only,
                                  test::get_process_id_name(),  //segment name
                                  65536);
    #else
    //->
-   managed_shared_memory segment(create_only, 
+   managed_shared_memory segment(create_only,
                                  "MySharedMemory",  //segment name
                                  65536);
    //<-