diff options
author | Mathias Agopian <mathias@google.com> | 2017-02-28 15:06:51 -0800 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2017-03-03 14:47:47 -0800 |
commit | 22dbf3947fedf988e714a4703ddf85fc41413f90 (patch) | |
tree | ad823e9592de58265e4740a4d1ae251bfa260348 /libutils/SystemClock.cpp | |
parent | 6048d9db5f11045412504b533ea9a92a7df6354c (diff) |
clean-up libutils includes
moved Foo.h as first include of Foo.cpp, and
removed redundant includes.
Made NativeHandle non virtual.
Test: run & compile
Bug: n/a
Change-Id: I37fa746cd42c9ba23aba181f84cb6c619386406a
Diffstat (limited to 'libutils/SystemClock.cpp')
-rw-r--r-- | libutils/SystemClock.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libutils/SystemClock.cpp b/libutils/SystemClock.cpp index 965e32c0f..28fc35145 100644 --- a/libutils/SystemClock.cpp +++ b/libutils/SystemClock.cpp @@ -19,17 +19,17 @@ * System clock functions. */ +#define LOG_TAG "SystemClock" + +#include <utils/SystemClock.h> + #include <sys/time.h> -#include <limits.h> -#include <fcntl.h> #include <string.h> #include <errno.h> #include <cutils/compiler.h> -#include <utils/SystemClock.h> -#include <utils/Timers.h> -#define LOG_TAG "SystemClock" +#include <utils/Timers.h> #include <utils/Log.h> namespace android { |