summaryrefslogtreecommitdiffstats
path: root/yaml-cpp/include/yaml-cpp/nodeutil.h
diff options
context:
space:
mode:
authorimarom <imarom@cisco.com>2015-08-24 17:52:52 +0300
committerimarom <imarom@cisco.com>2015-08-24 17:52:52 +0300
commit36c6c87fe4380b214f8ff8a45dc0213fa109821c (patch)
treeac4886a9e36fef3d0d7f621ac46678ebb7486015 /yaml-cpp/include/yaml-cpp/nodeutil.h
parent7d3be8c612e295820649779335288c197b80ccb2 (diff)
fix compile issues with external libarries
Diffstat (limited to 'yaml-cpp/include/yaml-cpp/nodeutil.h')
-rwxr-xr-xyaml-cpp/include/yaml-cpp/nodeutil.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/yaml-cpp/include/yaml-cpp/nodeutil.h b/yaml-cpp/include/yaml-cpp/nodeutil.h
deleted file mode 100755
index d0c01d27..00000000
--- a/yaml-cpp/include/yaml-cpp/nodeutil.h
+++ /dev/null
@@ -1,62 +0,0 @@
-#ifndef NODEUTIL_H_62B23520_7C8E_11DE_8A39_0800200C9A66
-#define NODEUTIL_H_62B23520_7C8E_11DE_8A39_0800200C9A66
-
-#if defined(_MSC_VER) || (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4
-#pragma once
-#endif
-
-
-namespace YAML
-{
- template <typename T, typename U>
- struct is_same_type {
- enum { value = false };
- };
-
- template <typename T>
- struct is_same_type<T, T> {
- enum { value = true };
- };
-
- template <typename T, bool check>
- struct is_index_type_with_check {
- enum { value = false };
- };
-
- template <> struct is_index_type_with_check<std::size_t, false> { enum { value = true }; };
-
-#define MAKE_INDEX_TYPE(Type) \
- template <> struct is_index_type_with_check<Type, is_same_type<Type, std::size_t>::value> { enum { value = true }; }
-
- MAKE_INDEX_TYPE(int);
- MAKE_INDEX_TYPE(unsigned);
- MAKE_INDEX_TYPE(short);
- MAKE_INDEX_TYPE(unsigned short);
- MAKE_INDEX_TYPE(long);
- MAKE_INDEX_TYPE(unsigned long);
-
-#undef MAKE_INDEX_TYPE
-
- template <typename T>
- struct is_index_type: public is_index_type_with_check<T, false> {};
-
- // messing around with template stuff to get the right overload for operator [] for a sequence
- template <typename T, bool b>
- struct _FindFromNodeAtIndex {
- const Node *pRet;
- _FindFromNodeAtIndex(const Node&, const T&): pRet(0) {}
- };
-
- template <typename T>
- struct _FindFromNodeAtIndex<T, true> {
- const Node *pRet;
- _FindFromNodeAtIndex(const Node& node, const T& key): pRet(node.FindAtIndex(static_cast<std::size_t>(key))) {}
- };
-
- template <typename T>
- inline const Node *FindFromNodeAtIndex(const Node& node, const T& key) {
- return _FindFromNodeAtIndex<T, is_index_type<T>::value>(node, key).pRet;
- }
-}
-
-#endif // NODEUTIL_H_62B23520_7C8E_11DE_8A39_0800200C9A66