-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated StringView and link list for vcpkglib (#444)
* Added template constructor to StringView Compilation on Raspberry Pi OS with gcc 8.3 was failing because the StringView class did not have constructor defined for ZStringView. Addresses microsoft/vcpkg#21142 * Added atomic library to link list Addresses microsoft/vcpkg#22843 Related to microsoft/vcpkg#21142 * Added expression filter for atomic * Corrected filter expression * Detect libatomic * fix it the strega way! * Adjust atomic test code * strega nits Co-authored-by: Robert Schumacher <[email protected]> Co-authored-by: nicole mazzuca <[email protected]> Co-authored-by: nicole mazzuca <[email protected]>
- Loading branch information
1 parent
5a75f1e
commit d9702d9
Showing
4 changed files
with
30 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
|
||
namespace vcpkg | ||
{ | ||
|
||
struct StringView | ||
{ | ||
constexpr StringView() = default; | ||
|
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