mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
362 B
8 lines
362 B
// 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
|
|
|