From 36c6c87fe4380b214f8ff8a45dc0213fa109821c Mon Sep 17 00:00:00 2001 From: imarom Date: Mon, 24 Aug 2015 17:52:52 +0300 Subject: fix compile issues with external libarries --- yaml-cpp/src/regex.cpp | 60 -------------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100755 yaml-cpp/src/regex.cpp (limited to 'yaml-cpp/src/regex.cpp') diff --git a/yaml-cpp/src/regex.cpp b/yaml-cpp/src/regex.cpp deleted file mode 100755 index b35b1f43..00000000 --- a/yaml-cpp/src/regex.cpp +++ /dev/null @@ -1,60 +0,0 @@ -#include "regex.h" - -namespace YAML -{ - // constructors - RegEx::RegEx(): m_op(REGEX_EMPTY) - { - } - - RegEx::RegEx(REGEX_OP op): m_op(op) - { - } - - RegEx::RegEx(char ch): m_op(REGEX_MATCH), m_a(ch) - { - } - - RegEx::RegEx(char a, char z): m_op(REGEX_RANGE), m_a(a), m_z(z) - { - } - - RegEx::RegEx(const std::string& str, REGEX_OP op): m_op(op) - { - for(std::size_t i=0;i