From 735857b61ed48d4ca5e2d47b17009a4b5e3f1f07 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 12 Dec 2020 12:43:28 +0100 Subject: [PATCH] Fix a Clang warning. --- lib.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib.cpp b/lib.cpp index 171eced..83a9692 100644 --- a/lib.cpp +++ b/lib.cpp @@ -20,8 +20,6 @@ plocate parts and modifications are licensed under the GPLv2 or, at your option, any later version. */ -using namespace std; - #include "lib.h" #include "db.h" @@ -39,6 +37,8 @@ using namespace std; #include #include +using namespace std; + /* Compare two path names using the database directory order. This is not exactly strcmp () order: "a" < "a.b", so "a/z" < "a.b". */ int dir_path_cmp(const string &a, const string &b) -- 2.39.2