mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-10 14:05:17 +08:00
cpplint header guard style
Signed-off-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
This commit is contained in:
@@ -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 <cassert>
|
||||
#include <iostream>
|
||||
@@ -85,4 +85,4 @@ class queue {
|
||||
int size;
|
||||
};
|
||||
|
||||
#endif // DATA_STRUCTURES_QUEUE_QUEUE_H_
|
||||
#endif // DATA_STRUCTURES_QUEUE_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 <cassert>
|
||||
#include <iostream>
|
||||
@@ -108,4 +108,4 @@ class stack {
|
||||
int size;
|
||||
};
|
||||
|
||||
#endif // DATA_STRUCTURES_STK_STACK_H_
|
||||
#endif // DATA_STRUCTURES_STACK_H_
|
||||
|
||||
Reference in New Issue
Block a user