Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix build error against libjsoncpp 1.9.4
  • Loading branch information
jlblancoc committed Dec 5, 2020
1 parent 4fd0bf8 commit bbd096d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
1 change: 1 addition & 0 deletions doc/source/doxygen-docs/changelog.md
Expand Up @@ -15,6 +15,7 @@
- BUG FIXES:
- Fix error rendering an opengl scene with mrpt::opengl::CCamera objects in it.
- rawlog-edit silently ignored when more than one operation was requested.
- Fix FTBFS against libjsoncpp 1.9.4 (Closes [#1118](https://github.com/MRPT/mrpt/issues/1118))

------
# Version 2.1.4: Released Nov 8th, 2020
Expand Down
Expand Up @@ -70,12 +70,6 @@ class CSchemeArchive : public mrpt::serialization::CSchemeArchiveBase_impl
m_val = val;
return *m_parent;
}
mrpt::serialization::CSchemeArchiveBase& operator=(
const std::nullptr_t val) override
{
m_val = val;
return *m_parent;
}
mrpt::serialization::CSchemeArchiveBase& operator=(
const std::string val) override
{
Expand Down
Expand Up @@ -32,7 +32,6 @@ class CSchemeArchiveBase_impl
virtual CSchemeArchiveBase& operator=(const uint64_t) = 0;
virtual CSchemeArchiveBase& operator=(const float) = 0;
virtual CSchemeArchiveBase& operator=(const double) = 0;
virtual CSchemeArchiveBase& operator=(const std::nullptr_t) = 0;
virtual CSchemeArchiveBase& operator=(const std::string) = 0;
virtual CSchemeArchiveBase& operator=(bool) = 0;

Expand Down

0 comments on commit bbd096d

Please sign in to comment.