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 /it-it | |
| parent | 30d63b3709472daed27b2d837c0834ca1db84888 (diff) | |
[c++/en,es,it,br,ru,ch] Fix forgotten namespace std:: (#2619)
Diffstat (limited to 'it-it')
| -rw-r--r-- | it-it/c++-it.html.markdown | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/it-it/c++-it.html.markdown b/it-it/c++-it.html.markdown index 4af30176..b4f9c50e 100644 --- a/it-it/c++-it.html.markdown +++ b/it-it/c++-it.html.markdown @@ -461,7 +461,7 @@ void Cane::print() const  Cane::~Cane()  { -    cout << "Ciao ciao " << nome << "\n"; +    std::cout << "Ciao ciao " << nome << "\n";  }  int main() { @@ -647,7 +647,7 @@ void stampaMessaggio<10>() {  printMessage<20>();  // Stampa "impara il C++ in 20 minuti!"  printMessage<10>();  // Stampa "Impara il C++ più velocemente in soli 10 minuti!"                                    -                                         +  ////////////////////////////  // Gestione delle eccezioni  /////////////////////////// @@ -658,7 +658,7 @@ printMessage<10>();  // Stampa "Impara il C++ più velocemente in soli 10 minuti  #include <exception>  #include <stdexcept> -// Tutte le eccezioni lanciate all'interno del blocco _try_ possono essere catturate dai successivi  +// Tutte le eccezioni lanciate all'interno del blocco _try_ possono essere catturate dai successivi  // handlers _catch_.  try {      // Non allocare eccezioni nello heap usando _new_. | 
