diff options
author | 2013-03-08 13:16:39 +0000 | |
---|---|---|
committer | 2013-03-08 13:16:39 +0000 | |
commit | 6539642bc137e6f0c52a2cd15a6e13929eaa3a9d (patch) | |
tree | cb4e7b72479959fee6a42d1b5fca05a15bb43ee9 | |
parent | e7700c978b2436b3b007f33738eff3fe2ae368ce (diff) | |
download | paludis-6539642bc137e6f0c52a2cd15a6e13929eaa3a9d.tar.gz paludis-6539642bc137e6f0c52a2cd15a6e13929eaa3a9d.tar.xz |
Silence warnings
-rw-r--r-- | src/clients/cave/search_extras_handle.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/clients/cave/search_extras_handle.cc b/src/clients/cave/search_extras_handle.cc index d3e921561..95c06baea 100644 --- a/src/clients/cave/search_extras_handle.cc +++ b/src/clients/cave/search_extras_handle.cc @@ -1,7 +1,7 @@ /* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* - * Copyright (c) 2010 Ciaran McCreesh + * Copyright (c) 2010, 2012 Ciaran McCreesh * * This file is part of the Paludis package manager. Paludis is free software; * you can redistribute it and/or modify it under the terms of the GNU General @@ -17,6 +17,8 @@ * Place, Suite 330, Boston, MA 02111-1307 USA */ +#include "config.h" + #include "search_extras_handle.hh" #include <paludis/util/singleton-impl.hh> @@ -30,8 +32,6 @@ #include <dlfcn.h> #include <stdint.h> -#include "config.h" - #define STUPID_CAST(type, val) reinterpret_cast<type>(reinterpret_cast<uintptr_t>(val)) using namespace paludis; |