diff options
Diffstat (limited to 'starts/meaning-vm/main.cpp')
-rw-r--r-- | starts/meaning-vm/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/starts/meaning-vm/main.cpp b/starts/meaning-vm/main.cpp index 1d25975..513efd2 100644 --- a/starts/meaning-vm/main.cpp +++ b/starts/meaning-vm/main.cpp @@ -2,7 +2,6 @@ #include "helpers.hpp" #include "meaning.hpp" -using namespace std; #include <iostream> @@ -14,7 +13,7 @@ void dumpconcept(ref r) if (ref(l.first) == name) { continue; } - cout << r << " " << ref(l.first) << " " << ref(l.second) << endl; + std::cout << r << " " << ref(l.first) << " " << ref(l.second) << std::endl; } if (!r->linked(dumped)) { r[dumped = true]; |