File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ class CAsyncSingleBufferSubAllocator
28
28
using Composed = CSingleBufferSubAllocator<AddressAllocator,HostAllocator>;
29
29
30
30
public:
31
- using size_type = AddressAllocator::size_type;
32
- using value_type = Composed::value_type;
31
+ using size_type = typename AddressAllocator::size_type;
32
+ using value_type = typename Composed::value_type;
33
33
static constexpr value_type invalid_value = Composed::invalid_value;
34
34
35
35
class DeferredFreeFunctor
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ class CSingleBufferSubAllocator : public IBufferAllocator
20
20
public:
21
21
using AddressAllocator = AddrAllocator;
22
22
using ReservedAllocator = ReservAllocator;
23
- using size_type = AddressAllocator::size_type;
24
- using value_type = AddressAllocator::size_type;
23
+ using size_type = typename AddressAllocator::size_type;
24
+ using value_type = typename AddressAllocator::size_type;
25
25
static constexpr value_type invalid_value = AddressAllocator::invalid_address;
26
26
27
27
// constructors
You can’t perform that action at this time.
0 commit comments