diff options
author | Mathias Agopian <mathias@google.com> | 2013-04-01 15:17:55 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2013-04-01 16:50:43 -0700 |
commit | 9857d99eecc389389da261a72461322d5cfb8eeb (patch) | |
tree | 2de3f96ffa093a633b93b246902bb6a506ba053f /libpixelflinger/codeflinger/MIPSAssembler.h | |
parent | d67bbab6d873c073fa5c3bdb93e8f32106898123 (diff) | |
download | core-9857d99eecc389389da261a72461322d5cfb8eeb.tar.gz core-9857d99eecc389389da261a72461322d5cfb8eeb.tar.bz2 core-9857d99eecc389389da261a72461322d5cfb8eeb.zip |
move tinyutils into its own namespace
I was fed-up with the constant conflicts in Eclipse
with the "libutils" version.
Also fix a few copyright notices.
Change-Id: I8ffcb845af4b5d0d178f5565f64dfcfbfa27fcd6
Diffstat (limited to 'libpixelflinger/codeflinger/MIPSAssembler.h')
-rw-r--r-- | libpixelflinger/codeflinger/MIPSAssembler.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libpixelflinger/codeflinger/MIPSAssembler.h b/libpixelflinger/codeflinger/MIPSAssembler.h index d8e8165e9..430ab064c 100644 --- a/libpixelflinger/codeflinger/MIPSAssembler.h +++ b/libpixelflinger/codeflinger/MIPSAssembler.h @@ -21,12 +21,12 @@ #include <stdint.h> #include <sys/types.h> -#include <utils/Vector.h> -#include <utils/KeyedVector.h> - +#include "tinyutils/KeyedVector.h" +#include "tinyutils/Vector.h" #include "tinyutils/smartpointer.h" -#include "codeflinger/ARMAssemblerInterface.h" -#include "codeflinger/CodeCache.h" + +#include "ARMAssemblerInterface.h" +#include "CodeCache.h" namespace android { |