Skip to content

Commit 341d6cd

Browse files
author
kevyuu
committed
Move storage_t to common_inc
1 parent 812ae7b commit 341d6cd

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

include/nbl/builtin/hlsl/emulated/int64_common_member_inc.hlsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
using storage_t = vector<uint32_t, 2>;
22
storage_t data;
33

44
/**

include/nbl/builtin/hlsl/emulated/int64_t.hlsl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ struct emulated_int64_t;
1919

2020
struct emulated_uint64_t
2121
{
22-
using storage_t = vector<uint32_t, 2>;
2322
using this_t = emulated_uint64_t;
2423
NBL_CONSTEXPR_STATIC_INLINE bool Signed = false;
2524

@@ -38,7 +37,6 @@ struct emulated_uint64_t
3837

3938
struct emulated_int64_t
4039
{
41-
using storage_t = vector<uint32_t, 2>;
4240
using this_t = emulated_int64_t;
4341
NBL_CONSTEXPR_STATIC_INLINE bool Signed = true;
4442

0 commit comments

Comments
 (0)