Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
libcifpp
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
libcifpp
Commits
77f80cd5
Unverified
Commit
77f80cd5
authored
Jan 19, 2022
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix atomic test (apparently, libatomic is only needed for std::atomic<long long>)
parent
3df60006
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
cmake/FindAtomic.cmake
+2
-3
No files found.
cmake/FindAtomic.cmake
View file @
77f80cd5
...
@@ -20,9 +20,8 @@ mark_as_advanced(_CXX_ATOMIC_HAVE_HEADER)
...
@@ -20,9 +20,8 @@ mark_as_advanced(_CXX_ATOMIC_HAVE_HEADER)
set
(
code
[[
set
(
code
[[
#include <atomic>
#include <atomic>
int main(int argc, char** argv) {
int main(int argc, char** argv) {
struct Test { int val; };
std::atomic<long long> s;
std::atomic<Test> s;
++s;
(void)s.is_lock_free();
return 0;
return 0;
}
}
]]
)
]]
)
...
...
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