summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/plist/Dictionary.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/plist/Dictionary.h b/include/plist/Dictionary.h
index fc7e558..37ff1c9 100644
--- a/include/plist/Dictionary.h
+++ b/include/plist/Dictionary.h
@@ -60,9 +60,7 @@ public :
60 void Remove(Node* node); 60 void Remove(Node* node);
61 void Remove(const std::string& key); 61 void Remove(const std::string& key);
62 std::string GetNodeKey(Node* node); 62 std::string GetNodeKey(Node* node);
63 template <typename T> 63 template <typename T> T* Get(const std::string& key) {
64 T* Get(const std::string& key)
65 {
66 return (T*)(_map[key]); 64 return (T*)(_map[key]);
67 } 65 }
68 66