summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Salyzyn2016-09-28 12:07:20 -0500
committerMark Salyzyn2016-09-30 14:47:05 -0500
commit66ce3e08c5632a20ea66bde6dd76397041edf034 (patch)
treee77589e0f6c62e8ac1c8faabe2d9dd2934d3ecee /libutils/VectorImpl.cpp
parent0dd4431072cce3c62876b728cb20aa5b77b11a8d (diff)
downloadplatform-system-core-66ce3e08c5632a20ea66bde6dd76397041edf034.tar.gz
platform-system-core-66ce3e08c5632a20ea66bde6dd76397041edf034.tar.xz
platform-system-core-66ce3e08c5632a20ea66bde6dd76397041edf034.zip
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.cpp10
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 @@
16 16
17#define LOG_TAG "Vector" 17#define LOG_TAG "Vector"
18 18
19#include <string.h>
20#include <stdlib.h>
21#include <stdio.h> 19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22 22
23#include <cutils/log.h> 23#include <android/log.h>
24#include <safe_iop.h>
25
26#include <utils/Errors.h> 24#include <utils/Errors.h>
27#include <utils/VectorImpl.h> 25#include <utils/VectorImpl.h>
28 26
27#include <safe_iop.h>
28
29#include "SharedBuffer.h" 29#include "SharedBuffer.h"
30 30
31/*****************************************************************************/ 31/*****************************************************************************/