[Lldb-commits] [PATCH] D31172: Move stop info override callback	code from ArchSpec into Process
    Greg Clayton via Phabricator via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Wed Jul 12 07:58:10 PDT 2017
    
    
  
clayborg added a comment.
A few inline fixes, but this looks great. Very close
================
Comment at: include/lldb/Core/ArchSpec.h:26-30
 namespace lldb_private {
 class Platform;
-}
-namespace lldb_private {
 class Stream;
-}
-namespace lldb_private {
 class StringList;
 }
----------------
This should actually be removed and replaced with a lldb-forward.h file. I know it was wrong to begin with, but we should fix it as long as we are making changes.
================
Comment at: include/lldb/Core/Architecture.h:17
+
+class Architecture {
+public:
----------------
This should inherit from PluginInterface so we can extract the plug-in name from it if needed for logging.
================
Comment at: include/lldb/Core/Architecture.h:19
+public:
+  Architecture() = default;
+  virtual ~Architecture() = default;
----------------
Not sure the constructor is needed?
https://reviews.llvm.org/D31172
    
    
More information about the lldb-commits
mailing list