From: Graham Percival Date: Thu, 15 Dec 2011 14:28:19 +0000 (-0800) Subject: Avoid deprecated access declarations X-Git-Tag: release/2.15.25-1~26 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6e2e1d6a13aba88a3a8eecc0d46f96ad245c152a;p=lilypond.git Avoid deprecated access declarations "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 --- diff --git a/flower/include/interval.hh b/flower/include/interval.hh index 1ce6ac2098..02bc7919d6 100644 --- a/flower/include/interval.hh +++ b/flower/include/interval.hh @@ -31,7 +31,7 @@ template struct Interval_t : public Drul_array { - Drul_array::at; + using Drul_array::at; static T infinity (); static string T_to_string (T arg);