From 6e2e1d6a13aba88a3a8eecc0d46f96ad245c152a Mon Sep 17 00:00:00 2001
From: Graham Percival <graham@percival-music.ca>
Date: Thu, 15 Dec 2011 06:28:19 -0800
Subject: [PATCH] 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
---
 flower/include/interval.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);
-- 
2.39.5