diff --git a/examples/eastl/IncludeOS_eastl b/examples/eastl/IncludeOS_eastl index 523926dca2..309add75aa 100755 Binary files a/examples/eastl/IncludeOS_eastl and b/examples/eastl/IncludeOS_eastl differ diff --git a/examples/eastl/IncludeOS_eastl.img.qcow2 b/examples/eastl/IncludeOS_eastl.img.qcow2 index aff981900e..e3f9fd8a7f 100644 Binary files a/examples/eastl/IncludeOS_eastl.img.qcow2 and b/examples/eastl/IncludeOS_eastl.img.qcow2 differ diff --git a/examples/eastl/IncludeOS_eastl.img.vdi b/examples/eastl/IncludeOS_eastl.img.vdi index 030b31fc23..210faaded9 100644 Binary files a/examples/eastl/IncludeOS_eastl.img.vdi and b/examples/eastl/IncludeOS_eastl.img.vdi differ diff --git a/examples/eastl/IncludeOS_eastl.img.vmdk b/examples/eastl/IncludeOS_eastl.img.vmdk index b009a86cc0..9fc3129975 100644 Binary files a/examples/eastl/IncludeOS_eastl.img.vmdk and b/examples/eastl/IncludeOS_eastl.img.vmdk differ diff --git a/examples/eastl/service.cpp b/examples/eastl/service.cpp index 89894d1995..50c2e9f447 100644 --- a/examples/eastl/service.cpp +++ b/examples/eastl/service.cpp @@ -222,6 +222,18 @@ void Service::start() std::cout << "result: " << shared2->artist << " (usage: " << sv[0].use_count() << " == " << shared2.use_count() << ")" << std::endl; } - + + ///////////////////////////////////////////////////////////////////////////// + //// std::string + ///////////////////////////////////////////////////////////////////////////// + + std::string s("A string!"); + + std::cout << s << std::endl; + for(auto it = s.begin(); it != s.end(); ++it) + std::cout << *it; + std::cout << std::endl; + + std::cout << "Service out!" << std::endl; }