Skip to content

Commit

Permalink
fix include guards
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher M. Cantalupo <christopher.m.cantalupo@intel.com>
  • Loading branch information
cmcantalupo committed Aug 6, 2024
1 parent 13e7e6a commit dc6ec77
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions libgeopmd/src/RuntimeStats.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* SPDX-License-Identifier: BSD-3-Clause
*/

#ifndef RUNTIMESTATS_HPP_INCLUDE
#define RUNTIMESTATS_HPP_INCLUDE

#include <vector>
#include <string>

Expand Down Expand Up @@ -47,3 +50,5 @@ namespace geopm
std::vector<stats_s> m_moments;
};
}

#endif
5 changes: 5 additions & 0 deletions libgeopmd/src/StatsCollector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* SPDX-License-Identifier: BSD-3-Clause
*/

#ifndef STATSCOLLECTOR_HPP_INCLUDE
#define STATSCOLLECTOR_HPP_INCLUDE

#include <vector>
#include <string>
#include <memory>
Expand Down Expand Up @@ -34,3 +37,5 @@ namespace geopm
std::string m_time_begin;
};
}

#endif

0 comments on commit dc6ec77

Please sign in to comment.