Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[core] Quieten clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Rex committed Sep 18, 2019
1 parent fdfe8b0 commit 025017c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions platform/default/include/mbgl/storage/offline_database.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ class OfflineDatabase : private util::noncopyable {
void initialize();
void handleError(const mapbox::sqlite::Exception&, const char* action);
void handleError(const util::IOException&, const char* action);
void handleError(const std::runtime_error &ex, const char* action);
void handleError(const std::runtime_error& ex, const char* action);

void removeExisting();
void removeOldCacheTable();
void createSchema();
Expand Down
2 changes: 1 addition & 1 deletion platform/default/src/mbgl/storage/offline_database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ void OfflineDatabase::handleError(const util::IOException& ex, const char* actio
Log::Error(Event::Database, ex.code, "Can't %s: %s", action, ex.what());
}

void OfflineDatabase::handleError(const std::runtime_error &ex, const char* action) {
void OfflineDatabase::handleError(const std::runtime_error& ex, const char* action) {
Log::Error(Event::Database, -1, "Can't %s: %s", action, ex.what());
}

Expand Down

0 comments on commit 025017c

Please sign in to comment.