mirror of
https://github.com/shadps4-emu/ext-fmt.git
synced 2024-11-28 04:00:40 +00:00
Remove warning pragmas since there is no effect on "security" warnings
This commit is contained in:
parent
ca7e689e08
commit
1cad3fadd6
5
format.h
5
format.h
@ -100,9 +100,6 @@ class Array {
|
||||
const T &operator[](std::size_t index) const { return ptr_[index]; }
|
||||
};
|
||||
|
||||
#pragma warning(push)
|
||||
#pragma warning(disable: 4996)
|
||||
|
||||
template <typename T, std::size_t SIZE>
|
||||
void Array<T, SIZE>::Grow(std::size_t size) {
|
||||
capacity_ = (std::max)(size, capacity_ + capacity_ / 2);
|
||||
@ -122,8 +119,6 @@ void Array<T, SIZE>::append(const T *begin, const T *end) {
|
||||
size_ += num_elements;
|
||||
}
|
||||
|
||||
#pragma warning(pop)
|
||||
|
||||
// Information about an integer type.
|
||||
// IntTraits is not specialized for integer types smaller than int,
|
||||
// since these are promoted to int.
|
||||
|
Loading…
Reference in New Issue
Block a user