Skip to content

Commit

Permalink
C++ header files - fixing pragma once absence in some header files (#572
Browse files Browse the repository at this point in the history
)
  • Loading branch information
msftstepanov authored Jul 29, 2024
1 parent f390fed commit c864227
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/in_mem_data_store.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#pragma once

#include <shared_mutex>
#include <memory>
Expand Down
2 changes: 2 additions & 0 deletions include/index_build_params.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#pragma once

#include "common_includes.h"
#include "parameters.h"

Expand Down
2 changes: 2 additions & 0 deletions include/index_config.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#pragma once

#include "common_includes.h"
#include "parameters.h"

Expand Down
2 changes: 2 additions & 0 deletions include/index_factory.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#pragma once

#include "index.h"
#include "abstract_graph_store.h"
#include "in_mem_graph_store.h"
Expand Down
1 change: 1 addition & 0 deletions include/locking.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#pragma once

#include <mutex>

Expand Down
1 change: 1 addition & 0 deletions include/timer.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#pragma once

#include <chrono>

Expand Down
1 change: 1 addition & 0 deletions include/windows_slim_lock.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#pragma once

#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
Expand Down

0 comments on commit c864227

Please sign in to comment.