Le 07/12/2015 08:02, Scott Kostyshak a écrit :
commit acadb4d6083bc5dcf85d98041fbf6e717fc818ec Author: Scott Kostyshak <[email protected]> Date: Mon Dec 7 02:02:04 2015 -0500Fix a debug comment - //lyxerr << "drawing '" << char_ << "' font: " << pi.base.fontname << endl; + //lyxerr << "drawing '" << char_ << "' font: " << pi.base.fontname << std::endl;
Actually, most .cpp files do not need this std:: because they contain the line
using namspace cpp; Almost one fifth of them specify specify this directive, though: fantomas (master): grep -Lr "using namespace std" src| grep cpp|wc -l 75 fantomas (master): grep -lr "using namespace std" src| grep cpp|wc -l 325 JMarc
