diff options
author | omgee <omgee@programmer.net> | 2017-01-03 09:41:35 +0200 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2017-01-03 08:41:35 +0100 |
commit | ae16d450781aecd9ff4423deb2cf67317d309080 (patch) | |
tree | 8da96162c597a4f1e3fdec119c34b713e6011d27 /c++.html.markdown | |
parent | 30d63b3709472daed27b2d837c0834ca1db84888 (diff) |
[c++/en,es,it,br,ru,ch] Fix forgotten namespace std:: (#2619)
Diffstat (limited to 'c++.html.markdown')
-rw-r--r-- | c++.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++.html.markdown b/c++.html.markdown index 24d38df7..5220fb0b 100644 --- a/c++.html.markdown +++ b/c++.html.markdown @@ -456,7 +456,7 @@ void Dog::print() const Dog::~Dog() { - cout << "Goodbye " << name << "\n"; + std::cout << "Goodbye " << name << "\n"; } int main() { |