diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-06-21 17:11:52 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-06-21 17:11:52 +0900 |
commit | 104648735c18bd11921693a3393c5c7ecb4729c8 (patch) | |
tree | 1f7b5e8771011cb3cacbf15b2f869dec6994814b | |
parent | 6aad766f32dcfcb81b0006248852845778d179a8 (diff) |
Remove unused headers
To shorten compile time and the risk of name overlapping,
remove unused headers.
Change-Id: Ie43824b4fc554a955b90b61d63794670c21e06a3
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
-rw-r--r-- | src/layers.cpp | 3 | ||||
-rw-r--r-- | src/layers.hpp | 5 |
2 files changed, 1 insertions, 7 deletions
diff --git a/src/layers.cpp b/src/layers.cpp index f5f7a89..6c6be55 100644 --- a/src/layers.cpp +++ b/src/layers.cpp @@ -14,12 +14,9 @@ * limitations under the License. */ -#include <algorithm> #include <regex> -#include "json_helper.hpp" #include "layers.hpp" -#include "util.hpp" #include "hmi-debug.h" namespace wm diff --git a/src/layers.hpp b/src/layers.hpp index c01d45e..5a18fad 100644 --- a/src/layers.hpp +++ b/src/layers.hpp @@ -17,12 +17,9 @@ #ifndef TMCAGLWM_LAYERS_H #define TMCAGLWM_LAYERS_H -#include <json.hpp> - -#include <regex> -#include <set> #include <string> +#include "../include/json.hpp" #include "layout.hpp" #include "result.hpp" #include "wayland_ivi_wm.hpp" |