Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
benchmark
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
benchmark
Commits
f261c680
Commit
f261c680
authored
Sep 03, 2016
by
Eric Fiselier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Try and add MSVC NORETURN attribute again
parent
756f0699
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
internal_macros.h
src/internal_macros.h
+3
-1
No files found.
src/internal_macros.h
View file @
f261c680
...
@@ -15,10 +15,12 @@
...
@@ -15,10 +15,12 @@
# define COMPILER_GCC
# define COMPILER_GCC
#endif
#endif
#if __has_feature(cxx_attributes)
|| defined(COMPILER_MSVC)
#if __has_feature(cxx_attributes)
# define BENCHMARK_NORETURN [[noreturn]]
# define BENCHMARK_NORETURN [[noreturn]]
#elif defined(__GNUC__)
#elif defined(__GNUC__)
# define BENCHMARK_NORETURN __attribute__((noreturn))
# define BENCHMARK_NORETURN __attribute__((noreturn))
#elif defined(COMPILER_MSVC)
# define BENCHMARK_NORETURN __declspec(noreturn)
#else
#else
# define BENCHMARK_NORETURN
# define BENCHMARK_NORETURN
#endif
#endif
...
...
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