summaryrefslogtreecommitdiff
path: root/flower
diff options
context:
space:
mode:
authorGraham Percival <graham@percival-music.ca>2011-12-15 06:28:19 -0800
committerGraham Percival <graham@percival-music.ca>2012-01-09 06:08:40 +0000
commit6e2e1d6a13aba88a3a8eecc0d46f96ad245c152a (patch)
treecdd8111a9a027114d670be48445b5983ddba4bb9 /flower
parentc46be1b7c0e190478a16035db5aad453f31e9d02 (diff)
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
Diffstat (limited to 'flower')
-rw-r--r--flower/include/interval.hh2
1 files changed, 1 insertions, 1 deletions
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<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);