Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abseil-cpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
abseil-cpp
Commits
f9d3bc9e
Unverified
Commit
f9d3bc9e
authored
Aug 17, 2021
by
Cheng Zhao
Committed by
GitHub
Aug 17, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing ABSL_DLL for a few functions (#1002)
parent
8910297b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
absl/types/bad_optional_access.h
+1
-1
absl/types/bad_variant_access.h
+2
-2
No files found.
absl/types/bad_optional_access.h
View file @
f9d3bc9e
...
...
@@ -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
...
...
absl/types/bad_variant_access.h
View file @
f9d3bc9e
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment