Skip to content

Commit

Permalink
Merged in fix/c++11-narrowing (pull request #90)
Browse files Browse the repository at this point in the history
Fix the c++ type narrowing error on OSX/clang
  • Loading branch information
dellaert committed Jan 19, 2015
2 parents f8e8729 + ab23788 commit 47811e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gtsam/base/Manifold.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ struct HasManifoldPrereqs {
};

/// Extra manifold traits for fixed-dimension types
template<class Class, size_t N>
template<class Class, int N>
struct ManifoldImpl {
// Compile-time dimensionality
static int GetDimension(const Class&) {
Expand Down

0 comments on commit 47811e3

Please sign in to comment.