From 80132c8e221aa5a922496c46e23432685885ba04 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Tue, 23 Jan 2024 16:23:53 +0100 Subject: modules-all: Renamed every .h file to .hpp --- modules/io_codec/SConscript | 2 +- modules/io_codec/io_peer.hpp | 10 +++++----- modules/io_codec/rpc.hpp | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'modules/io_codec') diff --git a/modules/io_codec/SConscript b/modules/io_codec/SConscript index 0afd6d6..2a277cb 100644 --- a/modules/io_codec/SConscript +++ b/modules/io_codec/SConscript @@ -13,7 +13,7 @@ dir_path = Dir('.').abspath io_env = env.Clone(); io_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) -io_env.headers = sorted(glob.glob(dir_path + "/*.h")) +io_env.headers = sorted(glob.glob(dir_path + "/*.hpp")) env.sources += io_env.sources; env.headers += io_env.headers; diff --git a/modules/io_codec/io_peer.hpp b/modules/io_codec/io_peer.hpp index 46a7d11..9ba623f 100644 --- a/modules/io_codec/io_peer.hpp +++ b/modules/io_codec/io_peer.hpp @@ -1,9 +1,9 @@ #pragma once -#include -#include -#include -#include +#include +#include +#include +#include namespace saw { @@ -101,4 +101,4 @@ new_streaming_io_peer(own stream); } // namespace saw -#include "io_peer.tmpl.hpp +#include "io_peer.tmpl.hpp" diff --git a/modules/io_codec/rpc.hpp b/modules/io_codec/rpc.hpp index 020bf96..eec149f 100644 --- a/modules/io_codec/rpc.hpp +++ b/modules/io_codec/rpc.hpp @@ -1,6 +1,6 @@ #pragma once -#include +#include namespace saw { namespace rmt { -- cgit v1.2.3