Rename .h to .hpp

These files are C++ only. They should either have no extension like
standard C++ headers (which is cumbersome on Windows environments), or
.hpp.

.h is used for C and hybrid C/C++ headers.

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
2023-03-15 21:49:41 +01:00
parent 261ad98812
commit 308f63490c
16 changed files with 33 additions and 33 deletions

View File

@@ -5,7 +5,7 @@
#pragma once
#include "sal.h"
#include "sal.hpp"
#include <assert.h>
#include <cstdint>
#include <string>

View File

@@ -5,7 +5,7 @@
#pragma once
#include "sal.h"
#include "sal.hpp"
#include <stdexcept>
#include <cstring>

View File

@@ -5,7 +5,7 @@
#pragma once
#include "sal.h"
#include "sal.hpp"
#include <exception>
namespace stdex

View File

@@ -5,7 +5,7 @@
#pragma once
#include "sal.h"
#include "sal.hpp"
#include <assert.h>
#include <cstdint>
#include <string>

View File

@@ -5,7 +5,7 @@
#pragma once
#include "sal.h"
#include "sal.hpp"
#include <ios>
#include <istream>
#include <ostream>

View File

@@ -5,7 +5,7 @@
#pragma once
#include "sal.h"
#include "sal.hpp"
namespace stdex
{

View File

@@ -5,7 +5,7 @@
#pragma once
#include "sal.h"
#include "sal.hpp"
#include <vector>
namespace stdex

View File

@@ -5,11 +5,11 @@
#pragma once
#include "interval.h"
#include "memory.h"
#include "sal.h"
#include "sgml.h"
#include "string.h"
#include "interval.hpp"
#include "memory.hpp"
#include "sal.hpp"
#include "sgml.hpp"
#include "string.hpp"
#include <assert.h>
#include <stdarg.h>
#include <stdint.h>

View File

@@ -5,8 +5,8 @@
#pragma once
#include "sal.h"
#include "interval.h"
#include "sal.hpp"
#include "interval.hpp"
#include <chrono>
namespace stdex

View File

@@ -5,10 +5,10 @@
#pragma once
#include "mapping.h"
#include "sal.h"
#include "sgml_unicode.h"
#include "string.h"
#include "mapping.hpp"
#include "sal.hpp"
#include "sgml_unicode.hpp"
#include "string.hpp"
#include <assert.h>
namespace stdex

View File

@@ -5,7 +5,7 @@
#pragma once
#include "sal.h"
#include "sal.hpp"
#include <assert.h>
#include <ctype.h>
#include <stdint.h>

View File

@@ -5,7 +5,7 @@
#pragma once
#include "sal.h"
#include "sal.hpp"
namespace stdex
{