]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/offset.cc
* flower/include/std-string.hh:
[lilypond.git] / flower / offset.cc
index b45809e0b9ed82322fb243a18fef7a748540f1c3..a0e87b58cf57984734386aabc3a6b3dc8ea99b7d 100644 (file)
 
 
 #ifndef STANDALONE
-std::string
+string
 Offset::to_string () const
 {
-  std::string s;
-  s = std::string (" (") + std::to_string (coordinate_a_[X_AXIS]) + ", "
-    + std::to_string (coordinate_a_[Y_AXIS]) + ")";
+  string s;
+  s = string (" (") + ::to_string (coordinate_a_[X_AXIS]) + ", "
+    + ::to_string (coordinate_a_[Y_AXIS]) + ")";
   return s;
 }
 #endif