diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 14:21:51 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:41 -0700 |
| commit | 604d0e58dab76f8ab31eb4f7807f7b561c4d571d (patch) | |
| tree | 56c5f18eaa5cc9e3fa7129a7479e243c4db44988 /toolsrc/include/vcpkg_Checks.h | |
| parent | 80e48c2756cc2c453ba221fe38c32f969d5139ea (diff) | |
| download | vcpkg-604d0e58dab76f8ab31eb4f7807f7b561c4d571d.tar.gz vcpkg-604d0e58dab76f8ab31eb4f7807f7b561c4d571d.zip | |
cstring_view -> CStringView
Diffstat (limited to 'toolsrc/include/vcpkg_Checks.h')
| -rw-r--r-- | toolsrc/include/vcpkg_Checks.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/include/vcpkg_Checks.h b/toolsrc/include/vcpkg_Checks.h index 5bcc59fee..8e7a35f4d 100644 --- a/toolsrc/include/vcpkg_Checks.h +++ b/toolsrc/include/vcpkg_Checks.h @@ -25,7 +25,7 @@ namespace vcpkg::Checks // Part of the reason these exist is to not include extra headers in this one to avoid circular #includes. [[noreturn]] - void exit_with_message(const LineInfo& line_info, const cstring_view errorMessage); + void exit_with_message(const LineInfo& line_info, const CStringView errorMessage); template <class Arg1, class...Args> [[noreturn]] @@ -36,7 +36,7 @@ namespace vcpkg::Checks void check_exit(const LineInfo& line_info, bool expression); - void check_exit(const LineInfo& line_info, bool expression, const cstring_view errorMessage); + void check_exit(const LineInfo& line_info, bool expression, const CStringView errorMessage); template <class Arg1, class...Args> void check_exit(const LineInfo& line_info, bool expression, const char* errorMessageTemplate, const Arg1 errorMessageArg1, const Args&... errorMessageArgs) |
