Skip to content
This repository has been archived by the owner on Feb 22, 2021. It is now read-only.

Commit

Permalink
Fix missing semicolon in error macros
Browse files Browse the repository at this point in the history
  • Loading branch information
Xrayez committed Feb 5, 2020
1 parent 5530ae1 commit 7968375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thirdparty/clipper2/clipper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ namespace clipperlib {
void Clipper::AddPath(const Path &path, PathType polytype, bool is_open)
{
if (is_open) {
ERR_FAIL_COND_MSG(polytype == ptClip,"AddPath: Only subject paths may be open.")
ERR_FAIL_COND_MSG(polytype == ptClip,"AddPath: Only subject paths may be open.");
has_open_paths_ = true;
}
minima_list_sorted_ = false;
Expand Down

0 comments on commit 7968375

Please sign in to comment.