forked from OSchip/llvm-project
give subclasses access to UnixSignals::m_signals
Allow subclasses of UnixSignals to access m_signals by marking the member protected instead of private. This enables a subclass to provide a default signal set as appropriate on construction. llvm-svn: 128544
This commit is contained in:
parent
36bc3aec2d
commit
2298dee87a
|
@ -133,10 +133,6 @@ protected:
|
|||
void
|
||||
Reset ();
|
||||
|
||||
private:
|
||||
//------------------------------------------------------------------
|
||||
// For UnixSignals only
|
||||
//------------------------------------------------------------------
|
||||
typedef std::map <int32_t, Signal> collection;
|
||||
|
||||
collection m_signals;
|
||||
|
|
Loading…
Reference in New Issue