[Lldb-commits] [PATCH] Move lot of class from the global namespace into lldb_private
Greg Clayton
clayborg at gmail.com
Fri Mar 27 09:55:27 PDT 2015
The main question is do we want to move each plug-in into its own namespace within lldb_private namespace?
All code from the GDB remote process plug-in could be in:
namespace lldb_private {
namespace plugin {
namespace process {
namespace gdb_remote {
// Code here
}
}
}
}
Or just
namespace lldb_private {
namespace process_gdb_remote {
// Code here
}
}
http://reviews.llvm.org/D8654
EMAIL PREFERENCES
http://reviews.llvm.org/settings/panel/emailpreferences/
More information about the lldb-commits
mailing list