diff options
Diffstat (limited to 'src/Flowgraph.cpp')
-rw-r--r-- | src/Flowgraph.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Flowgraph.cpp b/src/Flowgraph.cpp index 3844e86..e36c1f4 100644 --- a/src/Flowgraph.cpp +++ b/src/Flowgraph.cpp @@ -26,7 +26,7 @@ #include "Flowgraph.h" #include "PcDebug.h" - +#include <memory> #if HAVE_DECL__MM_MALLOC # include <mm_malloc.h> @@ -43,7 +43,7 @@ #include <sys/time.h> #endif -using namespace boost; +using namespace std; typedef std::vector<shared_ptr<Node> >::iterator NodeIterator; typedef std::vector<shared_ptr<Edge> >::iterator EdgeIterator; |