[Lldb-commits] [lldb] f853789 - [lldb] [Host] Sync TerminalState::Data to struct type

Michał Górny via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 1 11:34:30 PDT 2021


Author: Michał Górny
Date: 2021-10-01T20:34:11+02:00
New Revision: f8537895b9a63caec31a02b90b82fb367b852ae8

URL: https://github.com/llvm/llvm-project/commit/f8537895b9a63caec31a02b90b82fb367b852ae8
DIFF: https://github.com/llvm/llvm-project/commit/f8537895b9a63caec31a02b90b82fb367b852ae8.diff

LOG: [lldb] [Host] Sync TerminalState::Data to struct type

Added: 
    

Modified: 
    lldb/include/lldb/Host/Terminal.h

Removed: 
    


################################################################################
diff  --git a/lldb/include/lldb/Host/Terminal.h b/lldb/include/lldb/Host/Terminal.h
index 081a427fdb50..ba70acf720d2 100644
--- a/lldb/include/lldb/Host/Terminal.h
+++ b/lldb/include/lldb/Host/Terminal.h
@@ -45,7 +45,7 @@ class Terminal {
 /// This class can be used to remember the terminal state for a file
 /// descriptor and later restore that state as it originally was.
 class TerminalState {
-  class Data;
+  struct Data;
 
 public:
   /// Construct a new instance and optionally save terminal state.


        


More information about the lldb-commits mailing list