Skip to content

Commit

Permalink
Remove extraneous semicolons.
Browse files Browse the repository at this point in the history
  • Loading branch information
connormanning committed May 7, 2015
1 parent c7152e9 commit 4c3114c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/pdal/Utils.hpp
Expand Up @@ -317,7 +317,7 @@ namespace Utils

template<typename KEY, typename VALUE>
bool contains(const std::map<KEY, VALUE>& c, const KEY& v)
{ return c.find(v) != c.end(); };
{ return c.find(v) != c.end(); }

template<typename COLLECTION, typename VALUE>
bool contains(const COLLECTION& c, const VALUE& v)
Expand Down Expand Up @@ -377,7 +377,7 @@ namespace Utils
return std::is_same<T_IN, T_OUT>::value ||
inRange<T_OUT>(static_cast<double>(in));
}
};
} // namespace Utils

} // namespace pdal

1 comment on commit 4c3114c

@abellgithub
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sigh of relief.

Please sign in to comment.