summaryrefslogtreecommitdiff
path: root/libutils/LinearTransform.cpp
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2017-02-28 15:06:51 -0800
committerMathias Agopian <mathias@google.com>2017-03-03 14:47:47 -0800
commit22dbf3947fedf988e714a4703ddf85fc41413f90 (patch)
treead823e9592de58265e4740a4d1ae251bfa260348 /libutils/LinearTransform.cpp
parent6048d9db5f11045412504b533ea9a92a7df6354c (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/LinearTransform.cpp')
-rw-r--r--libutils/LinearTransform.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/libutils/LinearTransform.cpp b/libutils/LinearTransform.cpp
index 138ce8be7..d2e91a868 100644
--- a/libutils/LinearTransform.cpp
+++ b/libutils/LinearTransform.cpp
@@ -16,10 +16,9 @@
#define __STDC_LIMIT_MACROS
+#include <utils/LinearTransform.h>
#include <assert.h>
-#include <stdint.h>
-#include <utils/LinearTransform.h>
// disable sanitize as these functions may intentionally overflow (see comments below).
// the ifdef can be removed when host builds use clang.