Skip to content

Commit 71b828b

Browse files
Youkajhasse
authored andcommitted
changed ThreadPool header file extension to .hpp
Time to leave the past of C with objects and making a difference between these languages by using the appropriated C++ file extension
1 parent 5c54162 commit 71b828b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ThreadPool.h renamed to ThreadPool.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef THREAD_POOL_H
2-
#define THREAD_POOL_H
1+
#ifndef THREAD_POOL_HPP
2+
#define THREAD_POOL_HPP
33

44
#include <functional>
55
#include <future>

example.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <vector>
33
#include <chrono>
44

5-
#include "ThreadPool.h"
5+
#include "ThreadPool.hpp"
66

77
int main()
88
{

0 commit comments

Comments
 (0)