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

Commit

Permalink
[linux] loop-uv depends on mbgl-core for linking
Browse files Browse the repository at this point in the history
  • Loading branch information
jfirebaugh committed May 12, 2017
1 parent 31f68b2 commit 2228ad9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions cmake/loop-uv.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@ target_include_directories(mbgl-loop-uv
PRIVATE src
)

target_link_libraries(mbgl-loop-uv
PRIVATE mbgl-core
)

create_source_groups(mbgl-loop-uv)
3 changes: 2 additions & 1 deletion src/mbgl/style/source_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ class Source::Impl {
public:
virtual ~Impl() = default;

Impl& operator=(const Impl&) = delete;

virtual optional<std::string> getAttribution() const = 0;

const SourceType type;
Expand All @@ -25,7 +27,6 @@ class Source::Impl {
protected:
Impl(SourceType, std::string);
Impl(const Impl&) = default;
Impl& operator=(const Impl&) = delete;
};

} // namespace style
Expand Down
2 changes: 1 addition & 1 deletion src/mbgl/util/longest_common_subsequence.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ OutIt longest_common_subsequence(InIt a, InIt endA,
return longest_common_subsequence(a, endA, b, endB, outIt, std::equal_to<>());
}

}
} // namespace mbgl

0 comments on commit 2228ad9

Please sign in to comment.