diff options
author | Mark Salyzyn <salyzyn@google.com> | 2016-09-28 10:07:20 -0700 |
---|---|---|
committer | Mark Salyzyn <salyzyn@google.com> | 2016-09-30 12:47:05 -0700 |
commit | 66ce3e08c5632a20ea66bde6dd76397041edf034 (patch) | |
tree | e77589e0f6c62e8ac1c8faabe2d9dd2934d3ecee /libutils/VectorImpl.cpp | |
parent | 0dd4431072cce3c62876b728cb20aa5b77b11a8d (diff) |
system/core Replace cutils/log.h with android/log.h
Should use android/log.h instead of cutils/log.h as a good example
to all others. Adjust header order to comply with Android Coding
standards.
Test: Compile
Bug: 26552300
Bug: 31289077
Change-Id: I2c9cbbbd64d8dccf2d44356361d9742e4a9b9031
Diffstat (limited to 'libutils/VectorImpl.cpp')
-rw-r--r-- | libutils/VectorImpl.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libutils/VectorImpl.cpp b/libutils/VectorImpl.cpp index e8d40ed20..893e4f26f 100644 --- a/libutils/VectorImpl.cpp +++ b/libutils/VectorImpl.cpp @@ -16,16 +16,16 @@ #define LOG_TAG "Vector" -#include <string.h> -#include <stdlib.h> #include <stdio.h> +#include <stdlib.h> +#include <string.h> -#include <cutils/log.h> -#include <safe_iop.h> - +#include <android/log.h> #include <utils/Errors.h> #include <utils/VectorImpl.h> +#include <safe_iop.h> + #include "SharedBuffer.h" /*****************************************************************************/ |