summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-05-26 19:16:14 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-05-26 19:16:14 +0200
commit5375da6bfe4fd08a66c19a6361ea5c4ef289b5b8 (patch)
treea977a336854a94e0940a06bac4c57d88050aeb73 /modules
parentdfc9dcbb6b592d5639f5e9232bd022b85090a5b1 (diff)
downloadforstio-forstio-5375da6bfe4fd08a66c19a6361ea5c4ef289b5b8.tar.gz
Add encoding to assert so I can understand compilation errors :(
Diffstat (limited to 'modules')
-rw-r--r--modules/codec/c++/data.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/codec/c++/data.hpp b/modules/codec/c++/data.hpp
index b9924c7..ae9d8eb 100644
--- a/modules/codec/c++/data.hpp
+++ b/modules/codec/c++/data.hpp
@@ -90,7 +90,7 @@ struct native_data_type<schema::Primitive<schema::FloatingPoint, 8>> {
template<typename T, typename Encoding = FORSTIO_DEFAULT_DATA_ENCODING>
class data {
private:
- static_assert(always_false<T>, "Type not supported.");
+ static_assert(always_false<T,Encoding>, "Type not supported.");
};
template<>