From 075b0cfcd49ba2815e3fcb8581254cb43f89ebd2 Mon Sep 17 00:00:00 2001 From: Bingran Hu Date: Wed, 17 Jul 2024 00:52:10 -0400 Subject: [PATCH] Remove using namespace --- .../src/clp/regex_utils/regex_translation_utils.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/components/core/src/clp/regex_utils/regex_translation_utils.cpp b/components/core/src/clp/regex_utils/regex_translation_utils.cpp index 76ea83eb10..735120c3b7 100644 --- a/components/core/src/clp/regex_utils/regex_translation_utils.cpp +++ b/components/core/src/clp/regex_utils/regex_translation_utils.cpp @@ -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;