From f5b4be16dba6c7ee7e88185e785d0cdf63a5b437 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Tue, 5 Nov 2019 20:53:40 -0800 Subject: [PATCH] Old C++ Command: Make GetName et al public (#2042) These used to be effectively public due to SendableBase, and are public in the Java version. --- wpilibOldCommands/src/main/native/include/frc/commands/Command.h | 1 + 1 file changed, 1 insertion(+) diff --git a/wpilibOldCommands/src/main/native/include/frc/commands/Command.h b/wpilibOldCommands/src/main/native/include/frc/commands/Command.h index d40bb0058c..241490a9e2 100644 --- a/wpilibOldCommands/src/main/native/include/frc/commands/Command.h +++ b/wpilibOldCommands/src/main/native/include/frc/commands/Command.h @@ -388,6 +388,7 @@ class Command : public ErrorBase, friend class ConditionalCommand; + public: /** * Gets the name of this Command. *