mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-02 02:51:42 +00:00
Gets WPILib building on windows and C++11 vs C++1y (#561)
This commit is contained in:
committed by
Peter Johnson
parent
89d3b08e77
commit
abbe630274
@@ -20,7 +20,8 @@ using namespace frc;
|
||||
|
||||
const int RobotDrive::kMaxNumberOfMotors;
|
||||
|
||||
static auto make_shared_nodelete(SpeedController* ptr) {
|
||||
static std::shared_ptr<SpeedController> make_shared_nodelete(
|
||||
SpeedController* ptr) {
|
||||
return std::shared_ptr<SpeedController>(ptr, NullDeleter<SpeedController>());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user