mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Fixed classes with undefined constructor.
IterativeRobot and BinaryImage had no constructor defined (and so would give linker errors). Error just had an empty constructor defined, so I switched to "=default". Change-Id: Ia8efb4282928227878dfefeda58ccb8cf06aabb2
This commit is contained in:
@@ -16,10 +16,6 @@
|
||||
|
||||
priority_mutex ErrorBase::_globalErrorMutex;
|
||||
Error ErrorBase::_globalError;
|
||||
/**
|
||||
* @brief Initialize the instance status to 0 for now.
|
||||
*/
|
||||
ErrorBase::ErrorBase() {}
|
||||
|
||||
/**
|
||||
* @brief Retrieve the current error.
|
||||
|
||||
Reference in New Issue
Block a user