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

Commit

Permalink
Appease tidy.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisLoer committed May 31, 2018
1 parent 5cefbe5 commit a331587
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/mbgl/style/expression/type.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ struct ValueType {
};

struct CollatorType {
constexpr CollatorType() {};
constexpr CollatorType() = default;
std::string getName() const { return "collator"; }
bool operator==(const CollatorType&) const { return true; }
};
Expand Down
2 changes: 1 addition & 1 deletion src/mbgl/text/language_tag.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
namespace mbgl {

struct LanguageTag {
LanguageTag() {};
LanguageTag() = default;
LanguageTag(optional<std::string> language_, optional<std::string> script_, optional<std::string> region_);

static LanguageTag fromBCP47(const std::string& bcp47Tag);
Expand Down

0 comments on commit a331587

Please sign in to comment.