Skip to content

Commit

Permalink
Remove using namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill-hbrhbr committed Jul 17, 2024
1 parent 2e83f81 commit 075b0cf
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions components/core/src/clp/regex_utils/regex_translation_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,15 @@
#include "regex_utils/ErrorCode.hpp"
#include "regex_utils/RegexToWildcardTranslatorConfig.hpp"

using namespace clp::regex_utils;

using clp::regex_utils::cRegexEndAnchor;
using clp::regex_utils::cRegexOneOrMore;
using clp::regex_utils::cRegexStartAnchor;
using clp::regex_utils::cRegexZeroOrMore;
using clp::regex_utils::cRegexZeroOrOne;
using clp::regex_utils::cSingleCharWildcard;
using clp::regex_utils::cZeroOrMoreCharsWildcard;
using clp::regex_utils::ErrorCode;
using clp::regex_utils::RegexToWildcardTranslatorConfig;
using std::error_code;
using std::string;
using std::string_view;
Expand Down

0 comments on commit 075b0cf

Please sign in to comment.