1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-30 01:50:25 +02:00

[c++/en,es,it,br,ru,ch] Fix forgotten namespace std:: (#2619)

This commit is contained in:
omgee
2017-01-03 09:41:35 +02:00
committed by ven
parent 30d63b3709
commit ae16d45078
6 changed files with 99 additions and 99 deletions

View File

@@ -456,7 +456,7 @@ void Dog::print() const
Dog::~Dog()
{
cout << "Goodbye " << name << "\n";
std::cout << "Goodbye " << name << "\n";
}
int main() {