9 lines
362 B
C
9 lines
362 B
C
// Warnings that we disable so that we can compile at a higher warning level, yet
|
|
// not be inundated with things we don't really care about
|
|
|
|
#pragma once
|
|
#pragma warning(disable:4100) // unreferenced formal parameter
|
|
#pragma warning(disable:4663) // C++ language change
|
|
#pragma warning(disable:4238) // nonstandard extension used : class rvalue used as lvalue
|
|
|