From 199419ae62d43ba3a9cef31ce97c4ee64eb50158 Mon Sep 17 00:00:00 2001 From: Mathias Froehlich Date: Sat, 21 Jul 2012 12:55:53 +0200 Subject: [PATCH] hla: Remove deprecated types and methods from HLADataElement. --- simgear/hla/HLADataElement.hxx | 3 --- 1 file changed, 3 deletions(-) diff --git a/simgear/hla/HLADataElement.hxx b/simgear/hla/HLADataElement.hxx index 0cb14e61..079c5cec 100644 --- a/simgear/hla/HLADataElement.hxx +++ b/simgear/hla/HLADataElement.hxx @@ -147,15 +147,12 @@ public: }; typedef std::list Path; typedef std::pair StringPathPair; - typedef StringPathPair AttributePathPair; // deprecated typedef std::pair IndexPathPair; static std::string toString(const Path& path); static std::string toString(const StringPathPair& path) { return path.first + toString(path.second); } static StringPathPair toStringPathPair(const std::string& s); - static AttributePathPair toAttributePathPair(const std::string& s) // deprecated - { return toStringPathPair(s); } static Path toPath(const std::string& s) { return toStringPathPair(s).second; } -- 2.39.5