Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
videolan
vlc
Commits
0bcb7fd2
Commit
0bcb7fd2
authored
Jun 22, 2015
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Fix warning on all c++ files"
This reverts commit
59678ec0
.
parent
59678ec0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
5 deletions
+0
-5
include/vlc_atomic.h
include/vlc_atomic.h
+0
-5
No files found.
include/vlc_atomic.h
View file @
0bcb7fd2
...
...
@@ -115,12 +115,7 @@ static inline void vlc_atomic_init_float(vlc_atomic_float *var, float f)
{
union
{
float
f
;
uint32_t
i
;
}
u
;
u
.
f
=
f
;
#if defined(__cplusplus) && defined(HAVE_CXX11)
vlc_atomic_float
a
(
u
.
i
)
*
var
=
a
;
#else
atomic_init
(
var
,
u
.
i
);
#endif
}
/** Helper to retrieve a single precision from an atom. */
...
...
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