From 5ecb12751904b4fc0d37cac0c024fc44e8d4feb8 Mon Sep 17 00:00:00 2001 From: Brett Date: Fri, 10 Feb 2023 17:54:27 -0500 Subject: [PATCH] Fix issue with loader.h linking --- include/blt/std/loader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/blt/std/loader.h b/include/blt/std/loader.h index d8c13a5..f0d288e 100644 --- a/include/blt/std/loader.h +++ b/include/blt/std/loader.h @@ -20,7 +20,7 @@ namespace blt::fs { std::vector recursiveShaderInclude(const std::string& path); - std::string loadShaderFile(const std::string& path) { + static inline std::string loadShaderFile(const std::string& path) { std::stringstream stringStream; auto lines = recursiveShaderInclude(path);