We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90baec1 commit 9ee568dCopy full SHA for 9ee568d
include/common/TrackingStdAllocator.h
@@ -27,12 +27,12 @@ struct TrackingStdAllocator : public std::allocator<T> {
27
using other = TrackingStdAllocator<U>;
28
};
29
30
- TrackingStdAllocator() noexcept = default;
+ TrackingStdAllocator() = default;
31
32
- TrackingStdAllocator(const TrackingStdAllocator&) noexcept = default;
+ TrackingStdAllocator(const TrackingStdAllocator&) = default;
33
34
template <class U>
35
- TrackingStdAllocator(const TrackingStdAllocator<U>& other) noexcept : base_type(), counter_(other.counter_) {
+ TrackingStdAllocator(const TrackingStdAllocator<U>& other) : base_type(), counter_(other.counter_) {
36
}
37
38
pointer
0 commit comments