File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 2
2
// This file is part of the "Nabla Engine".
3
3
// For conditions of distribution and use, see copyright notice in nabla.h
4
4
5
- #include < string_view>
6
5
7
- namespace nbl ::builtin
8
- {
9
- constexpr std::string_view PathPrefix = " nbl/builtin/" ;
10
- constexpr bool hasPathPrefix (std::string_view str) { return str.find (PathPrefix) == 0ull ; }
11
- }
12
6
13
7
#ifndef _NBL_BUILTIN_COMMON_H_INCLUDED_
14
8
#define _NBL_BUILTIN_COMMON_H_INCLUDED_
@@ -17,6 +11,13 @@ namespace nbl::builtin
17
11
18
12
#include < cstring>
19
13
14
+ #include < string_view>
15
+ namespace nbl ::builtin
16
+ {
17
+ constexpr std::string_view PathPrefix = " nbl/builtin/" ;
18
+ constexpr bool hasPathPrefix (std::string_view str) { return str.find (PathPrefix) == 0ull ; }
19
+ }
20
+
20
21
namespace nbl
21
22
{
22
23
namespace builtin
You can’t perform that action at this time.
0 commit comments