Push fix for windows

release/4.3a0
Frank Dellaert 2021-12-24 11:48:25 -05:00
parent 839679eb7d
commit 3bdb585185
1 changed files with 3 additions and 0 deletions

View File

@ -36,6 +36,9 @@ class DiscreteValues : public Assignment<Key> {
public:
using Assignment::Assignment; // all constructors
// Define the implicit default constructor.
DiscreteValues() = default;
// Construct from assignment.
DiscreteValues(const Assignment<Key>& a) : Assignment<Key>(a) {}