-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated ApiView to use clang-15 to work around MSVC STL changes; fixe…
…d warning in keyvault-admin ApiView (#5901) * Updated ApiView to use clang-15 to work around MSVC STL changes; fixed warning in keyvault-admin ApiView * Move to latest clang 15; added error diagnostic for using namespace in public header * Update tools/apiview/parsers/cpp-api-parser/ApiViewProcessor/AstNode.cpp Co-authored-by: Rick Winter <[email protected]> * Added a note about the vcpkg port --------- Co-authored-by: Rick Winter <[email protected]>
- Loading branch information
1 parent
9d27383
commit 71e0603
Showing
25 changed files
with
1,403 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
tools/apiview/parsers/cpp-api-parser/ParseTests/TestCases/UsingNamespace.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
#include <chrono> | ||
#include <map> | ||
#include <string> | ||
#include <vector> | ||
|
||
namespace Test { namespace Inner { | ||
class Fred {}; | ||
}} // namespace Test::Inner | ||
|
||
using namespace Test::Inner; | ||
|
||
namespace A { namespace AB { namespace ABCD { | ||
char* GlobalFunctionInAABABCD(int character); | ||
}}} // namespace A::AB::ABCD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.