diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-20 21:10:08 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-24 19:32:10 +0100 |
commit | 5bf85412e4eacf92acc936b6e74bce0e2b1055d9 (patch) | |
tree | 9febf122c0396608055b9edbcd56f9c0cb3834d7 /tracker-wii/wii_point_extractor.cpp | |
parent | cebe535ec18ffcacac914bfab1874fd61d35ac3b (diff) |
tracker/wii: put definitions in exact namespace
It messes with static analysis tools for no apparent reason.
Diffstat (limited to 'tracker-wii/wii_point_extractor.cpp')
-rw-r--r-- | tracker-wii/wii_point_extractor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tracker-wii/wii_point_extractor.cpp b/tracker-wii/wii_point_extractor.cpp index e8934fc5..2da91d01 100644 --- a/tracker-wii/wii_point_extractor.cpp +++ b/tracker-wii/wii_point_extractor.cpp @@ -31,8 +31,8 @@ #include <QDebug> using namespace types; -using namespace pt_module; +namespace pt_module { WIIPointExtractor::WIIPointExtractor(const QString& module_name) : s(module_name) { @@ -125,3 +125,4 @@ void WIIPointExtractor::extract_points(const pt_frame& frame_, pt_preview& previ } } +} // ns pt_module |