summaryrefslogtreecommitdiff
path: root/src/string_search.h
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2016-06-28 21:21:21 +0200
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2016-07-05 22:36:39 +0200
commit43e83576bdfa90560e24975751f44fe71889ea76 (patch)
treef2dc89a026941aafaa59dc68648ff1121a41eef2 /src/string_search.h
parent5fd158568f93c3c9aab517774a98ec8bb5ca22a7 (diff)
downloadnode-new-43e83576bdfa90560e24975751f44fe71889ea76.tar.gz
src: fix readability/namespace cpplint warnings
PR-URL: https://github.com/nodejs/node/pull/7462 Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Diffstat (limited to 'src/string_search.h')
-rw-r--r--src/string_search.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/string_search.h b/src/string_search.h
index 7827fe153e..b4cc9d6ac9 100644
--- a/src/string_search.h
+++ b/src/string_search.h
@@ -623,8 +623,8 @@ size_t SearchString(Vector<const Char> subject,
StringSearch<Char> search(pattern);
return search.Search(subject, start_index);
}
-}
-} // namespace node::stringsearch
+} // namespace stringsearch
+} // namespace node
namespace node {
using node::stringsearch::Vector;