refactor(ipc): Cleanup

This commit is contained in:
Michael Carlberg 2017-01-14 00:27:29 +01:00
parent ed87a8924f
commit dacf36b981
3 changed files with 13 additions and 13 deletions
include/modules

View file

@ -35,11 +35,11 @@ namespace modules {
void on_message(const string& message);
private:
static constexpr auto TAG_OUTPUT = "<output>";
static constexpr const char* TAG_OUTPUT{"<output>"};
vector<unique_ptr<hook>> m_hooks;
string m_output;
size_t m_initial{0_z};
map<mousebtn, string> m_actions;
string m_output;
size_t m_initial;
};
}