From e673304221dad3ce02e2f6bb7f3b126b0f322398 Mon Sep 17 00:00:00 2001 From: Jade Date: Thu, 9 Jan 2025 00:49:53 +0800 Subject: [PATCH] Use pragma once (#1693) Signed-off-by: Jade Turner --- .../poseest/src/main/include/subsystems/GamepieceLauncher.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/photonlib-cpp-examples/poseest/src/main/include/subsystems/GamepieceLauncher.h b/photonlib-cpp-examples/poseest/src/main/include/subsystems/GamepieceLauncher.h index 483570f75..41b6d8da4 100644 --- a/photonlib-cpp-examples/poseest/src/main/include/subsystems/GamepieceLauncher.h +++ b/photonlib-cpp-examples/poseest/src/main/include/subsystems/GamepieceLauncher.h @@ -22,8 +22,7 @@ * SOFTWARE. */ -#ifndef PHOTONVISION_PHOTONLIB_CPP_EXAMPLES_POSEEST_SRC_MAIN_INCLUDE_SUBSYSTEMS_GAMEPIECELAUNCHER_H_ -#define PHOTONVISION_PHOTONLIB_CPP_EXAMPLES_POSEEST_SRC_MAIN_INCLUDE_SUBSYSTEMS_GAMEPIECELAUNCHER_H_ +#pragma once #include #include @@ -62,5 +61,3 @@ class GamepieceLauncher { void simulationInit(); // Method to initialize simulation components }; - -#endif // PHOTONVISION_PHOTONLIB_CPP_EXAMPLES_POSEEST_SRC_MAIN_INCLUDE_SUBSYSTEMS_GAMEPIECELAUNCHER_H_