From d238a458fe3b43dd18988a29f344ea90a9951ab0 Mon Sep 17 00:00:00 2001 From: Brian Neradt Date: Thu, 12 May 2022 20:42:34 +0000 Subject: [PATCH] Add `#pragma once` for PendingAction.h PendingAction.h needs a `#pragma once` to protect it from double inclusion. This patch adds this. This has not caused problems yet because it is currently only used once in HttpSM.h, but as it gets more use this will be required. --- include/tscore/PendingAction.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/tscore/PendingAction.h b/include/tscore/PendingAction.h index 93c81421795..4650b0629e6 100644 --- a/include/tscore/PendingAction.h +++ b/include/tscore/PendingAction.h @@ -21,6 +21,8 @@ See the License for the specific language governing permissions and limitations under the License. */ +#pragma once + /** Hold a pending @c Action. * * This is modeled on smart pointer classes. This class wraps a pointer to