Skip to content

Commit

Permalink
Suppress warning C6510
Browse files Browse the repository at this point in the history
  • Loading branch information
frederick-vs-ja committed Jul 24, 2024
1 parent e33293e commit 9d76f3b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
// Copyright (c) Microsoft Corporation.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

#if !defined(__clang__) && !defined(__EDG__)
// Invalid annotation: 'NullTerminated' property may only be used on buffers whose elements are of integral or pointer
// type
#pragma warning(disable : 6510)
#endif // !defined(__clang__) && !defined(__EDG__)

#include <algorithm>
#include <array>
#include <cassert>
Expand Down

0 comments on commit 9d76f3b

Please sign in to comment.