diff options
author | Barattero Laurent <laurent@larueluberlu.net> | 2014-01-21 04:02:33 +0100 |
---|---|---|
committer | Barattero Laurent <laurent@larueluberlu.net> | 2014-01-21 04:02:33 +0100 |
commit | 98f60a7659f12e0474ecd3fed0632a059fb4133f (patch) | |
tree | 8f10736fec6777df15b70230489429d45978cd0f /src/regboost.cpp | |
parent | 6ed6128396063cc4d1676d41fb63517eb29162e4 (diff) |
update to version 0.3.0
adds improved driver support for linux
Diffstat (limited to 'src/regboost.cpp')
-rw-r--r-- | src/regboost.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regboost.cpp b/src/regboost.cpp index bf3cf87..453bf08 100644 --- a/src/regboost.cpp +++ b/src/regboost.cpp @@ -21,7 +21,7 @@ * * Description: * - * Version: 0.2 + * Version: 0.3.0.1 * Created: 19/12/2013 05:22:37 * Revision: none * Compiler: gcc @@ -34,7 +34,7 @@ using namespace std; -using namespace boost; +//using namespace boost; RegBoost::RegBoost ( ) { @@ -47,7 +47,7 @@ RegBoost::isValidSyntax ( string &rline ) { for (int i = 0; i < REG_TAB_LEN; i++) { - if ( regex_match(rline.begin(), rline.end(), reg_tab[i]) ) + if ( boost::regex_match(rline.begin(), rline.end(), reg_tab[i]) ) { #ifdef DEBUG cout << rline << " -> ok" << endl; |