]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/matrix.hh
Revert "Issue 4550 (2/2) Avoid "using namespace std;" in included files"
[lilypond.git] / flower / include / matrix.hh
index 6b2e61c3591fe6415e5f61ca1fc94ae5f93763fb..a6c13f837cf81c12b465718a4417979f83b403c3 100644 (file)
@@ -57,7 +57,7 @@ public:
       data_.resize (rows * columns, t);
     else
       {
-        std::vector<T, A> new_data;
+        vector<T, A> new_data;
         new_data.resize (rows * columns, t);
         vsize cur_cols = rank_ ? data_.size () / rank_ : 0;
 
@@ -70,7 +70,7 @@ public:
   }
 
 private:
-  std::vector<T, A> data_;
+  vector<T, A> data_;
   vsize rank_;
 };