summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2023-04-29 19:07:11 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2023-04-29 19:07:11 +0100
commit5a0b3927a33807cca4c77c40eb873f8a3b51b0b0 (patch)
tree4af0585ee8f8f468ab10c0a4fe9994fb30b79599 /lib
parentDunno how, but some DOS new lines got in here! (diff)
downloadilt-5a0b3927a33807cca4c77c40eb873f8a3b51b0b0.tar.bz2
ilt-5a0b3927a33807cca4c77c40eb873f8a3b51b0b0.tar.xz
ilt-5a0b3927a33807cca4c77c40eb873f8a3b51b0b0.zip
Drop .hpp for header only things
Half of them acquired a .cpp part anyway
Diffstat (limited to 'lib')
-rw-r--r--lib/cache.h2
-rw-r--r--lib/chronology.h (renamed from lib/chronology.hpp)0
-rw-r--r--lib/collection.h (renamed from lib/collection.hpp)0
-rw-r--r--lib/collections.h (renamed from lib/collections.hpp)0
-rw-r--r--lib/embed-glsl.cpp.m42
-rw-r--r--lib/enumDetails.h (renamed from lib/enumDetails.hpp)0
-rw-r--r--lib/filesystem.h4
-rw-r--r--lib/geometricPlane.cpp2
-rw-r--r--lib/glArrays.h2
-rw-r--r--lib/glRef.h (renamed from lib/glRef.hpp)2
-rw-r--r--lib/gl_traits.h (renamed from lib/gl_traits.hpp)0
-rw-r--r--lib/location.cpp2
-rw-r--r--lib/location.h (renamed from lib/location.hpp)0
-rw-r--r--lib/persistence.h2
-rw-r--r--lib/ptr.h (renamed from lib/ptr.hpp)2
-rw-r--r--lib/ray.cpp2
-rw-r--r--lib/ray.h (renamed from lib/ray.hpp)0
-rw-r--r--lib/sorting.h (renamed from lib/sorting.hpp)0
-rw-r--r--lib/special_members.h (renamed from lib/special_members.hpp)0
-rw-r--r--lib/stdTypeDefs.h (renamed from lib/stdTypeDefs.hpp)0
-rw-r--r--lib/stream_support.h (renamed from lib/stream_support.hpp)2
-rw-r--r--lib/strings.h (renamed from lib/strings.hpp)0
-rw-r--r--lib/worker.h2
23 files changed, 13 insertions, 13 deletions
diff --git a/lib/cache.h b/lib/cache.h
index 5ab9469..2c3975b 100644
--- a/lib/cache.h
+++ b/lib/cache.h
@@ -1,6 +1,6 @@
#pragma once
-#include "special_members.hpp"
+#include "special_members.h"
#include <functional>
#include <map>
#include <memory>
diff --git a/lib/chronology.hpp b/lib/chronology.h
index 1980116..1980116 100644
--- a/lib/chronology.hpp
+++ b/lib/chronology.h
diff --git a/lib/collection.hpp b/lib/collection.h
index 6802bcb..6802bcb 100644
--- a/lib/collection.hpp
+++ b/lib/collection.h
diff --git a/lib/collections.hpp b/lib/collections.h
index 8f5a43d..8f5a43d 100644
--- a/lib/collections.hpp
+++ b/lib/collections.h
diff --git a/lib/embed-glsl.cpp.m4 b/lib/embed-glsl.cpp.m4
index 5b25e0a..3503f75 100644
--- a/lib/embed-glsl.cpp.m4
+++ b/lib/embed-glsl.cpp.m4
@@ -3,7 +3,7 @@ changecom()dnl
#include "substr(TYPE,1)-NAME.h"
#include <GL/glew.h>
#include "gfx/gl/shader.h"
-#include "lib/strings.hpp"
+#include "lib/strings.h"
constexpr const GLchar * src { R"GLSL-EMBED(dnl
include(SOURCE))GLSL-EMBED" };
diff --git a/lib/enumDetails.hpp b/lib/enumDetails.h
index 5966be2..5966be2 100644
--- a/lib/enumDetails.hpp
+++ b/lib/enumDetails.h
diff --git a/lib/filesystem.h b/lib/filesystem.h
index 5315183..b076f43 100644
--- a/lib/filesystem.h
+++ b/lib/filesystem.h
@@ -1,7 +1,7 @@
#pragma once
-#include "ptr.hpp"
-#include "special_members.hpp"
+#include "ptr.h"
+#include "special_members.h"
#include <cstddef>
#include <cstdio>
#include <sys/types.h>
diff --git a/lib/geometricPlane.cpp b/lib/geometricPlane.cpp
index 71216c1..ea4f02d 100644
--- a/lib/geometricPlane.cpp
+++ b/lib/geometricPlane.cpp
@@ -1,5 +1,5 @@
#include "geometricPlane.h"
-#include "ray.hpp"
+#include "ray.h"
#include <glm/geometric.hpp>
#include <glm/gtx/intersect.hpp>
diff --git a/lib/glArrays.h b/lib/glArrays.h
index 42f1d0f..8c8c0bc 100644
--- a/lib/glArrays.h
+++ b/lib/glArrays.h
@@ -4,7 +4,7 @@
#include <algorithm> // IWYU pragma: keep
#include <array>
#include <cstddef>
-#include <special_members.hpp>
+#include <special_members.h>
template<size_t N> class glArraysBase {
static_assert(N > 0);
diff --git a/lib/glRef.hpp b/lib/glRef.h
index 1ab239d..3031cf5 100644
--- a/lib/glRef.hpp
+++ b/lib/glRef.h
@@ -1,6 +1,6 @@
#pragma once
-#include <special_members.hpp>
+#include <special_members.h>
#include <stdexcept>
template<typename IdType, auto get, auto release, auto... fixed> class glRef {
diff --git a/lib/gl_traits.hpp b/lib/gl_traits.h
index 6ff8905..6ff8905 100644
--- a/lib/gl_traits.hpp
+++ b/lib/gl_traits.h
diff --git a/lib/location.cpp b/lib/location.cpp
index bff27a2..732dd6d 100644
--- a/lib/location.cpp
+++ b/lib/location.cpp
@@ -1,4 +1,4 @@
-#include "location.hpp"
+#include "location.h"
#include "maths.h"
#include <glm/gtx/transform.hpp>
diff --git a/lib/location.hpp b/lib/location.h
index 078f5d3..078f5d3 100644
--- a/lib/location.hpp
+++ b/lib/location.h
diff --git a/lib/persistence.h b/lib/persistence.h
index cc2e4e5..5d71d4c 100644
--- a/lib/persistence.h
+++ b/lib/persistence.h
@@ -8,7 +8,7 @@
#include <memory>
#include <optional>
#include <span>
-#include <special_members.hpp>
+#include <special_members.h>
#include <sstream>
#include <stack>
#include <stdexcept>
diff --git a/lib/ptr.hpp b/lib/ptr.h
index 931df39..b7d15a1 100644
--- a/lib/ptr.hpp
+++ b/lib/ptr.h
@@ -1,7 +1,7 @@
#pragma once
#include <memory>
-#include <special_members.hpp>
+#include <special_members.h>
template<typename Obj, auto Destroy> class wrapped_ptr {
public:
diff --git a/lib/ray.cpp b/lib/ray.cpp
index f9e3311..c4e0d8c 100644
--- a/lib/ray.cpp
+++ b/lib/ray.cpp
@@ -1,4 +1,4 @@
-#include "ray.hpp"
+#include "ray.h"
#include <algorithm>
Ray
diff --git a/lib/ray.hpp b/lib/ray.h
index 9bf47af..9bf47af 100644
--- a/lib/ray.hpp
+++ b/lib/ray.h
diff --git a/lib/sorting.hpp b/lib/sorting.h
index 777de00..777de00 100644
--- a/lib/sorting.hpp
+++ b/lib/sorting.h
diff --git a/lib/special_members.hpp b/lib/special_members.h
index 312862b..312862b 100644
--- a/lib/special_members.hpp
+++ b/lib/special_members.h
diff --git a/lib/stdTypeDefs.hpp b/lib/stdTypeDefs.h
index 317cdb3..317cdb3 100644
--- a/lib/stdTypeDefs.hpp
+++ b/lib/stdTypeDefs.h
diff --git a/lib/stream_support.hpp b/lib/stream_support.h
index 52cc9d9..7fb256c 100644
--- a/lib/stream_support.hpp
+++ b/lib/stream_support.h
@@ -1,6 +1,6 @@
#pragma once
-#include "enumDetails.hpp"
+#include "enumDetails.h"
#include <glm/glm.hpp>
#include <iostream>
#include <maths.h>
diff --git a/lib/strings.hpp b/lib/strings.h
index 9dca9ac..9dca9ac 100644
--- a/lib/strings.hpp
+++ b/lib/strings.h
diff --git a/lib/worker.h b/lib/worker.h
index d9a5a6f..0d15ca2 100644
--- a/lib/worker.h
+++ b/lib/worker.h
@@ -6,7 +6,7 @@
#include <memory>
#include <mutex>
#include <semaphore>
-#include <special_members.hpp>
+#include <special_members.h>
#include <thread>
#include <utility>
#include <vector>