diff options
author | Dan Eble <nine.fierce.ballads@gmail.com> | 2015-08-08 13:11:02 -0400 |
---|---|---|
committer | Dan Eble <nine.fierce.ballads@gmail.com> | 2015-08-20 19:16:09 -0400 |
commit | f127e14af04f474d20406ca0e0f76f05061ee103 (patch) | |
tree | f672505b3e37c00dc591ee98a8ad7f751bbf9685 /lily/paper-column-engraver.cc | |
parent | cca994dde70bef1b6c4e5cab871bcef845fec37c (diff) |
Issue 4550 (1/2) Avoid "using namespace std;" in included files
These are manual changes in preparation for an automated removal of
"using namespace std;".
Mostly these are additions of using-declarations for commonly used
types and containers (e.g. std::string, std::vector) to *.cc files so
that they will continue to build after the big removal.
Diffstat (limited to 'lily/paper-column-engraver.cc')
-rw-r--r-- | lily/paper-column-engraver.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lily/paper-column-engraver.cc b/lily/paper-column-engraver.cc index 7c44f173d7..68095c2d6e 100644 --- a/lily/paper-column-engraver.cc +++ b/lily/paper-column-engraver.cc @@ -34,6 +34,8 @@ #include "translator.icc" +using std::string; + Paper_column_engraver::Paper_column_engraver () { last_moment_.main_part_ = Rational (-1, 1); |