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
5224b63c
Commit
5224b63c
authored
Sep 02, 2016
by
Eric Fiselier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix BENCHMARK_NORETURN on MSVC
parent
a85f2a8e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
internal_macros.h
src/internal_macros.h
+9
-8
No files found.
src/internal_macros.h
View file @
5224b63c
...
@@ -7,7 +7,15 @@
...
@@ -7,7 +7,15 @@
# define __has_feature(x) 0
# define __has_feature(x) 0
#endif
#endif
#if __has_feature(cxx_attributes)
#if defined(__clang__)
# define COMPILER_CLANG
#elif defined(_MSC_VER)
# define COMPILER_MSVC
#elif defined(__GNUC__)
# define COMPILER_GCC
#endif
#if __has_feature(cxx_attributes) || defined(COMPILER_MSVC)
# define BENCHMARK_NORETURN [[noreturn]]
# define BENCHMARK_NORETURN [[noreturn]]
#elif defined(__GNUC__)
#elif defined(__GNUC__)
# define BENCHMARK_NORETURN __attribute__((noreturn))
# define BENCHMARK_NORETURN __attribute__((noreturn))
...
@@ -29,12 +37,5 @@
...
@@ -29,12 +37,5 @@
# define BENCHMARK_OS_LINUX 1
# define BENCHMARK_OS_LINUX 1
#endif
#endif
#if defined(__clang__)
# define COMPILER_CLANG
#elif defined(_MSC_VER)
# define COMPILER_MSVC
#elif defined(__GNUC__)
# define COMPILER_GCC
#endif
#endif // BENCHMARK_INTERNAL_MACROS_H_
#endif // BENCHMARK_INTERNAL_MACROS_H_
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