refactor(clang-tidy): Apply fixes

This commit is contained in:
Michael Carlberg 2016-11-25 13:55:15 +01:00
parent 0128014d44
commit ff9be848c7
119 changed files with 1752 additions and 1046 deletions
include/components

View file

@ -1,6 +1,7 @@
#pragma once
#include "common.hpp"
#include "errors.hpp"
POLYBAR_NS
@ -24,9 +25,9 @@ class parser {
protected:
uint32_t parse_color(string s, uint32_t fallback = 0);
int8_t parse_fontindex(string s);
attribute parse_attr(const char s);
attribute parse_attr(const char attr);
mousebtn parse_action_btn(string data);
string parse_action_cmd(string data);
string parse_action_cmd(const string& data);
private:
const logger& m_log;