Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
glslang
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
glslang
Commits
f4edb8f8
Commit
f4edb8f8
authored
Jun 25, 2019
by
Shahbaz Youssefi
Committed by
Shahbaz Youssefi
Jun 25, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove __DATE__ and __TIME__ usage
These macros result in a non-deterministic build. In chromium, these macros are specifically set to empty, resulting in a compile error.
parent
4e6b9ea3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
spirv-remap.cpp
StandAlone/spirv-remap.cpp
+1
-1
No files found.
StandAlone/spirv-remap.cpp
View file @
f4edb8f8
...
@@ -227,7 +227,7 @@ namespace {
...
@@ -227,7 +227,7 @@ namespace {
}
}
}
}
else
if
(
arg
==
"--version"
||
arg
==
"-V"
)
{
else
if
(
arg
==
"--version"
||
arg
==
"-V"
)
{
std
::
cout
<<
basename
(
argv
[
0
])
<<
" version 0.97
"
<<
__DATE__
<<
" "
<<
__TIME__
<<
std
::
endl
;
std
::
cout
<<
basename
(
argv
[
0
])
<<
" version 0.97
"
<<
std
::
endl
;
exit
(
0
);
exit
(
0
);
}
else
if
(
arg
==
"--input"
||
arg
==
"-i"
)
{
}
else
if
(
arg
==
"--input"
||
arg
==
"-i"
)
{
// Collect input files
// Collect input files
...
...
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