Commit d4666c97 authored by Antoine Kaufmann's avatar Antoine Kaufmann
Browse files

Reformat closer to google style

parent eb125a88
......@@ -27,19 +27,15 @@
#include "trace/parser.h"
#include "trace/process.h"
sym_map::sym_map()
: filter_en(false), insmap_en(false)
{
sym_map::sym_map() : filter_en(false), insmap_en(false) {
}
void sym_map::add_filter(const std::string &sym)
{
void sym_map::add_filter(const std::string &sym) {
filter_en = true;
filter.insert(sym);
}
void sym_map::load_file(const char *path, uint64_t offset)
{
void sym_map::load_file(const char *path, uint64_t offset) {
std::ifstream file(path, std::ios_base::in | std::ios_base::binary);
std::string line;
std::string label = "";
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment