diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-01-23 16:23:53 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-01-23 16:23:53 +0100 |
commit | 80132c8e221aa5a922496c46e23432685885ba04 (patch) | |
tree | c12774a3fae6837659d925d083328799b7a8b997 /modules/device-hip/c++ | |
parent | 8dad985328e2183b224300aa992951131956fdb3 (diff) |
modules-all: Renamed every .h file to .hpp
Diffstat (limited to 'modules/device-hip/c++')
-rw-r--r-- | modules/device-hip/c++/SConscript | 2 | ||||
-rw-r--r-- | modules/device-hip/c++/rpc.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/device-hip/c++/SConscript b/modules/device-hip/c++/SConscript index 57d3992..b66ce79 100644 --- a/modules/device-hip/c++/SConscript +++ b/modules/device-hip/c++/SConscript @@ -13,7 +13,7 @@ dir_path = Dir('.').abspath dev_hip_env = env.Clone(); dev_hip_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) -dev_hip_env.headers = sorted(glob.glob(dir_path + "/*.h")) +dev_hip_env.headers = sorted(glob.glob(dir_path + "/*.hpp")) env.sources += dev_hip_env.sources; env.headers += dev_hip_env.headers; diff --git a/modules/device-hip/c++/rpc.hpp b/modules/device-hip/c++/rpc.hpp index 0bcda0c..5bce553 100644 --- a/modules/device-hip/c++/rpc.hpp +++ b/modules/device-hip/c++/rpc.hpp @@ -1,6 +1,6 @@ #pragma once -#include <hip.h> +#include <hip.hpp> namespace saw { namespace rmt { |