Dispatcher::get_{dispatch_chars,OSC_string}: Make const
Found by cppcheck Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
committed by
Keith Winstein
parent
8c5ded4e6f
commit
64f7f7abb2
@@ -107,8 +107,8 @@ namespace Terminal {
|
||||
std::string str( void );
|
||||
|
||||
void dispatch( Function_Type type, const Parser::Action *act, Framebuffer *fb );
|
||||
std::string get_dispatch_chars( void ) { return dispatch_chars; }
|
||||
std::vector<wchar_t> get_OSC_string( void ) { return OSC_string; }
|
||||
std::string get_dispatch_chars( void ) const { return dispatch_chars; }
|
||||
std::vector<wchar_t> get_OSC_string( void ) const { return OSC_string; }
|
||||
|
||||
void OSC_put( const Parser::OSC_Put *act );
|
||||
void OSC_start( const Parser::OSC_Start *act );
|
||||
|
||||
Reference in New Issue
Block a user