Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
fmt
Commits
e37ee419
Commit
e37ee419
authored
Jun 24, 2019
by
Björn Schäpers
Committed by
Victor Zverovich
Jun 24, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Export exceptions destructors
Reenabling Compiling and Linking as DLL.
parent
e3488fca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
include/fmt/format-inl.h
include/fmt/format-inl.h
+2
-2
include/fmt/format.h
include/fmt/format.h
+2
-2
No files found.
include/fmt/format-inl.h
View file @
e37ee419
...
...
@@ -219,8 +219,8 @@ FMT_FUNC Char internal::thousands_sep_impl(locale_ref) {
}
#endif
FMT_FUNC
format_error
::~
format_error
()
FMT_NOEXCEPT
{}
FMT_FUNC
system_error
::~
system_error
()
FMT_NOEXCEPT
{}
FMT_
API
FMT_
FUNC
format_error
::~
format_error
()
FMT_NOEXCEPT
{}
FMT_
API
FMT_
FUNC
system_error
::~
system_error
()
FMT_NOEXCEPT
{}
FMT_FUNC
void
system_error
::
init
(
int
err_code
,
string_view
format_str
,
format_args
args
)
{
...
...
include/fmt/format.h
View file @
e37ee419
...
...
@@ -417,7 +417,7 @@ typedef basic_memory_buffer<char> memory_buffer;
typedef
basic_memory_buffer
<
wchar_t
>
wmemory_buffer
;
/** A formatting error such as invalid format string. */
class
format_error
:
public
std
::
runtime_error
{
class
FMT_API
format_error
:
public
std
::
runtime_error
{
public:
explicit
format_error
(
const
char
*
message
)
:
std
::
runtime_error
(
message
)
{}
explicit
format_error
(
const
std
::
string
&
message
)
...
...
@@ -2198,7 +2198,7 @@ class arg_formatter : public internal::arg_formatter_base<Range> {
An error returned by an operating system or a language runtime,
for example a file opening error.
*/
class
system_error
:
public
std
::
runtime_error
{
class
FMT_API
system_error
:
public
std
::
runtime_error
{
private:
FMT_API
void
init
(
int
err_code
,
string_view
format_str
,
format_args
args
);
...
...
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