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/



_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to