diff options
author | Cheng Zhao <github@zcbenz.com> | 2021-08-17 23:06:55 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-17 10:06:55 -0400 |
commit | f9d3bc9e0074c8e01b19bb83303fd8aa02cde5d9 (patch) | |
tree | 42229daf4f65bf540c2fb16e8937a3f181ab45d8 | |
parent | 8910297baf87e1777c4fd30fb0693eecf9f2c134 (diff) |
Add missing ABSL_DLL for a few functions (#1002)
-rw-r--r-- | absl/types/bad_optional_access.h | 2 | ||||
-rw-r--r-- | absl/types/bad_variant_access.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/absl/types/bad_optional_access.h b/absl/types/bad_optional_access.h index a500286a..049e72ad 100644 --- a/absl/types/bad_optional_access.h +++ b/absl/types/bad_optional_access.h @@ -67,7 +67,7 @@ class bad_optional_access : public std::exception { namespace optional_internal { // throw delegator -[[noreturn]] void throw_bad_optional_access(); +[[noreturn]] ABSL_DLL void throw_bad_optional_access(); } // namespace optional_internal ABSL_NAMESPACE_END diff --git a/absl/types/bad_variant_access.h b/absl/types/bad_variant_access.h index 095969f9..8ab215e9 100644 --- a/absl/types/bad_variant_access.h +++ b/absl/types/bad_variant_access.h @@ -70,8 +70,8 @@ class bad_variant_access : public std::exception { namespace variant_internal { -[[noreturn]] void ThrowBadVariantAccess(); -[[noreturn]] void Rethrow(); +[[noreturn]] ABSL_DLL void ThrowBadVariantAccess(); +[[noreturn]] ABSL_DLL void Rethrow(); } // namespace variant_internal ABSL_NAMESPACE_END |