From 8a2bef9c20946bc70f8a97c76b837426adfbb903 Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Sat, 6 Jun 2020 13:36:04 -0400 Subject: [PATCH] cpplint header guard style Signed-off-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com> --- data_structures/queue.h | 6 +++--- data_structures/stack.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/data_structures/queue.h b/data_structures/queue.h index dd53da7d0..3cb551741 100644 --- a/data_structures/queue.h +++ b/data_structures/queue.h @@ -1,6 +1,6 @@ /* This class specifies the basic operation on a queue as a linked list */ -#ifndef DATA_STRUCTURES_QUEUE_QUEUE_H_ -#define DATA_STRUCTURES_QUEUE_QUEUE_H_ +#ifndef DATA_STRUCTURES_QUEUE_H_ +#define DATA_STRUCTURES_QUEUE_H_ #include #include @@ -85,4 +85,4 @@ class queue { int size; }; -#endif // DATA_STRUCTURES_QUEUE_QUEUE_H_ +#endif // DATA_STRUCTURES_QUEUE_H_ diff --git a/data_structures/stack.h b/data_structures/stack.h index 8278a3d00..a27d2462b 100644 --- a/data_structures/stack.h +++ b/data_structures/stack.h @@ -1,6 +1,6 @@ /* This class specifies the basic operation on a stack as a linked list */ -#ifndef DATA_STRUCTURES_STK_STACK_H_ -#define DATA_STRUCTURES_STK_STACK_H_ +#ifndef DATA_STRUCTURES_STACK_H_ +#define DATA_STRUCTURES_STACK_H_ #include #include @@ -108,4 +108,4 @@ class stack { int size; }; -#endif // DATA_STRUCTURES_STK_STACK_H_ +#endif // DATA_STRUCTURES_STACK_H_