c++ - How to format identation for stream operators in Eclipse? -
i'd auto-format stream operator in eclipse in following way:
std::cout << "creating cache entry initial data staff = " << std::endl; nmspace::myspecialstream << "some text printed here." << nmspace::endl;
essentially, i'd stream operator align on next line first stream operator on previous line. there way similar formatting function arguments function arguments aligned on each line first argument, consider example:
void manager::func(nmspace::someverylongtype::sometypewithinthatlongtype arg1, int arg2);
wondering if possible streams well?
Comments
Post a Comment