]> git.donarmstrong.com Git - lilypond.git/commitdiff
Avoid deprecated access declarations
authorGraham Percival <graham@percival-music.ca>
Thu, 15 Dec 2011 14:28:19 +0000 (06:28 -0800)
committerGraham Percival <graham@percival-music.ca>
Mon, 9 Jan 2012 06:08:40 +0000 (06:08 +0000)
"According the ANSI/ISO Standard, the use of access declarations
is considered deprecated. Instead, you should use a using
declaration for that purpose"
  http://www.devx.com/tips/Tip/5707

flower/include/interval.hh

index 1ce6ac20988318a40af72585360e26e639f40523..02bc7919d6f5680d054b1e8db5c0c9ee778129f8 100644 (file)
@@ -31,7 +31,7 @@
 template<class T>
 struct Interval_t : public Drul_array<T>
 {
-  Drul_array<T>::at;
+  using Drul_array<T>::at;
 
   static T infinity ();
   static string T_to_string (T arg);