diff options
author | Ashok Thirumurthi <ashok.thirumurthi@intel.com> | 2013-08-30 14:58:00 +0000 |
---|---|---|
committer | Ashok Thirumurthi <ashok.thirumurthi@intel.com> | 2013-08-30 14:58:00 +0000 |
commit | e22defe905818b69da481ddd657fa5a21ac4a937 (patch) | |
tree | 3787c648ad0682c848fe2ae7779a47d0743a5fe1 | |
parent | d0a4d7362364e40f1012f8f5b533fc98b82da078 (diff) | |
download | bcm5719-llvm-e22defe905818b69da481ddd657fa5a21ac4a937.tar.gz bcm5719-llvm-e22defe905818b69da481ddd657fa5a21ac4a937.zip |
Moving "using namespace" statements out of header files.
llvm-svn: 189675
4 files changed, 12 insertions, 12 deletions
diff --git a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.cpp b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.cpp index 6210175f9a7..cbb9dec61b3 100644 --- a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.cpp +++ b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.cpp @@ -12,6 +12,8 @@ #include "lldb/Target/Thread.h" #include "RegisterContextCoreFreeBSD_x86_64.h" +using namespace lldb_private; + RegisterContextCoreFreeBSD_x86_64::RegisterContextCoreFreeBSD_x86_64(Thread &thread, const DataExtractor &gpregset, const DataExtractor &fpregset) : RegisterContextFreeBSD_x86_64(thread, 0) diff --git a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.h b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.h index acd594a6e66..d37ea08cff7 100644 --- a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.h +++ b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.h @@ -12,24 +12,22 @@ #include "Plugins/Process/POSIX/RegisterContextFreeBSD_x86_64.h" -using namespace lldb_private; - class RegisterContextCoreFreeBSD_x86_64: public RegisterContextFreeBSD_x86_64 { public: - RegisterContextCoreFreeBSD_x86_64 (Thread &thread, const DataExtractor &gpregset, - const DataExtractor &fpregset); + RegisterContextCoreFreeBSD_x86_64 (lldb_private::Thread &thread, const lldb_private::DataExtractor &gpregset, + const lldb_private::DataExtractor &fpregset); ~RegisterContextCoreFreeBSD_x86_64(); virtual bool - ReadRegister(const RegisterInfo *reg_info, RegisterValue &value); + ReadRegister(const lldb_private::RegisterInfo *reg_info, lldb_private::RegisterValue &value); bool ReadAllRegisterValues(lldb::DataBufferSP &data_sp); virtual bool - WriteRegister(const RegisterInfo *reg_info, const RegisterValue &value); + WriteRegister(const lldb_private::RegisterInfo *reg_info, const lldb_private::RegisterValue &value); bool WriteAllRegisterValues(const lldb::DataBufferSP &data_sp); diff --git a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.cpp b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.cpp index d9e3f6d5f90..7328d8835c6 100644 --- a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.cpp +++ b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.cpp @@ -12,6 +12,8 @@ #include "lldb/Target/Thread.h" #include "RegisterContextCoreLinux_x86_64.h" +using namespace lldb_private; + RegisterContextCoreLinux_x86_64::RegisterContextCoreLinux_x86_64(Thread &thread, const DataExtractor &gpregset, const DataExtractor &fpregset) diff --git a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.h b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.h index 9cf545afd56..4664508d89c 100644 --- a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.h +++ b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.h @@ -12,24 +12,22 @@ #include "Plugins/Process/POSIX/RegisterContextLinux_x86_64.h" -using namespace lldb_private; - class RegisterContextCoreLinux_x86_64: public RegisterContextLinux_x86_64 { public: - RegisterContextCoreLinux_x86_64 (Thread &thread, const DataExtractor &gpregset, - const DataExtractor &fpregset); + RegisterContextCoreLinux_x86_64 (lldb_private::Thread &thread, const lldb_private::DataExtractor &gpregset, + const lldb_private::DataExtractor &fpregset); ~RegisterContextCoreLinux_x86_64(); virtual bool - ReadRegister(const RegisterInfo *reg_info, RegisterValue &value); + ReadRegister(const lldb_private::RegisterInfo *reg_info, lldb_private::RegisterValue &value); bool ReadAllRegisterValues(lldb::DataBufferSP &data_sp); virtual bool - WriteRegister(const RegisterInfo *reg_info, const RegisterValue &value); + WriteRegister(const lldb_private::RegisterInfo *reg_info, const lldb_private::RegisterValue &value); bool WriteAllRegisterValues(const lldb::DataBufferSP &data_sp); |