diff options
author | Sergio Giro <sgiro@google.com> | 2015-09-23 16:22:59 +0100 |
---|---|---|
committer | Sergio Giro <sgiro@google.com> | 2015-09-23 16:22:59 +0100 |
commit | d2529f28308ba7583f4d8baaa937218d81cbe8bd (patch) | |
tree | 08e7ec119fa22c98d69f649e7ffa05f544a7d9f0 /libutils/VectorImpl.cpp | |
parent | 1d758c90959225c76ed4d318290ad1bf11532409 (diff) |
libutils: hide SharedBuffer by moving SharedBuffer.h to the implementation directory
Some methods in header files of classes using SharedBuffer need
to be moved to the implementation files accordingly
Change-Id: I891f3ace2b940ab219e4e449040bfed71c0547db
Diffstat (limited to 'libutils/VectorImpl.cpp')
-rw-r--r-- | libutils/VectorImpl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libutils/VectorImpl.cpp b/libutils/VectorImpl.cpp index 2f770f590..2ac158b9f 100644 --- a/libutils/VectorImpl.cpp +++ b/libutils/VectorImpl.cpp @@ -23,9 +23,10 @@ #include <cutils/log.h> #include <utils/Errors.h> -#include <utils/SharedBuffer.h> #include <utils/VectorImpl.h> +#include "SharedBuffer.h" + /*****************************************************************************/ |