From 952f3c7b7382b02e18c4bc70baa59751105786db Mon Sep 17 00:00:00 2001 From: jimblandy Date: Tue, 9 Feb 2010 17:13:17 +0000 Subject: Breakpad Linux dumper: Don't be silly about global functions. Yes, classes are useful. But that doesn't mean that every function has to gratuitously become a member function. The Google C++ Style Guide does not require this silliness, since the function is in the google_breakpad namespace anyway. a=jimblandy, r=nealsid git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@519 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/common/linux/dump_symbols.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/common/linux/dump_symbols.cc') diff --git a/src/common/linux/dump_symbols.cc b/src/common/linux/dump_symbols.cc index 61dbee86..02d26987 100644 --- a/src/common/linux/dump_symbols.cc +++ b/src/common/linux/dump_symbols.cc @@ -355,8 +355,7 @@ std::string BaseFileName(const std::string &filename) { namespace google_breakpad { -bool DumpSymbols::WriteSymbolFile(const std::string &obj_file, - FILE *sym_file) { +bool WriteSymbolFile(const std::string &obj_file, FILE *sym_file) { int obj_fd = open(obj_file.c_str(), O_RDONLY); if (obj_fd < 0) { fprintf(stderr, "Failed to open ELF file '%s': %s\n", -- cgit v1.2.1