Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2522)

Unified Diff: lily/include/pango-font.hh

Issue 579240043: Issue 4550: Avoid "using namespace std;" in included files (Take 2) (Closed)
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: lily/include/pango-font.hh
diff --git a/lily/include/pango-font.hh b/lily/include/pango-font.hh
index ff7114c10f52db628bda51f6ee8b2f5652e713ce..184f92ebeea946d1e5d4dcd62397d20657027335 100644
--- a/lily/include/pango-font.hh
+++ b/lily/include/pango-font.hh
@@ -50,11 +50,11 @@ public:
Real);
~Pango_font ();
- string description_string () const;
+ std::string description_string () const;
SCM font_file_name () const override;
- void register_font_file (const string &filename, const string &ps_name, int face_index);
+ void register_font_file (const std::string &filename, const std::string &ps_name, int face_index);
- size_t name_to_index (string) const override;
+ size_t name_to_index (std::string) const override;
SCM get_glyph_outline (size_t signed_idx) const;
Box get_glyph_outline_bbox (size_t signed_idx) const;
Box get_unscaled_indexed_char_dimensions (size_t) const;
@@ -63,9 +63,9 @@ public:
Stencil pango_item_string_stencil (PangoGlyphItem const *) const;
Stencil text_stencil (Output_def *output_state,
- const string &text,
+ const std::string &text,
bool music,
- const string &features_str) const override;
+ const std::string &features_str) const override;
void derived_mark () const override;
};

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b