From 5c51432c10a29d405da0004fa4d314d8b9f3c070 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Mon, 16 Jun 2025 13:55:33 +0200 Subject: Fixing data types --- modules/codec/c++/data.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/codec/c++/data.hpp b/modules/codec/c++/data.hpp index 5dd8e12..51a34ef 100644 --- a/modules/codec/c++/data.hpp +++ b/modules/codec/c++/data.hpp @@ -324,11 +324,11 @@ public: {} constexpr data& at(data i) { - return value_.at(this->get_flat_index({i.get()})); + return value_.at(this->get_flat_index({i})); } constexpr const data& at(data i) const { - return value_.at(this->get_flat_index({i.get()})); + return value_.at(this->get_flat_index({i})); } constexpr data& at(const data>& i){ -- cgit v1.2.3