Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
swiftshader
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
swiftshader
Commits
871b97fd
Commit
871b97fd
authored
Jun 30, 2015
by
Jan Voung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small fixes for unused argument warnings w/ Makefile.standalone "sb" target.
BUG=none R=jpp@chromium.org, kschimpf@google.com Review URL:
https://codereview.chromium.org/1219883003
.
parent
6ec369eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
IceBrowserCompileServer.cpp
src/IceBrowserCompileServer.cpp
+1
-0
main.cpp
src/main.cpp
+1
-0
No files found.
src/IceBrowserCompileServer.cpp
View file @
871b97fd
...
@@ -101,6 +101,7 @@ std::unique_ptr<llvm::raw_fd_ostream> getOutputStream(int FD) {
...
@@ -101,6 +101,7 @@ std::unique_ptr<llvm::raw_fd_ostream> getOutputStream(int FD) {
void
fatalErrorHandler
(
void
*
UserData
,
const
std
::
string
&
Reason
,
void
fatalErrorHandler
(
void
*
UserData
,
const
std
::
string
&
Reason
,
bool
GenCrashDialog
)
{
bool
GenCrashDialog
)
{
(
void
)
GenCrashDialog
;
BrowserCompileServer
*
Server
=
BrowserCompileServer
*
Server
=
reinterpret_cast
<
BrowserCompileServer
*>
(
UserData
);
reinterpret_cast
<
BrowserCompileServer
*>
(
UserData
);
Server
->
setFatalError
(
Reason
);
Server
->
setFatalError
(
Reason
);
...
...
src/main.cpp
View file @
871b97fd
...
@@ -24,6 +24,7 @@ int main(int argc, char **argv) {
...
@@ -24,6 +24,7 @@ int main(int argc, char **argv) {
// There are no real commandline arguments in the browser case.
// There are no real commandline arguments in the browser case.
// They are supplied via IPC.
// They are supplied via IPC.
assert
(
argc
==
1
);
assert
(
argc
==
1
);
(
void
)
argc
;
(
void
)
argv
;
(
void
)
argv
;
Ice
::
BrowserCompileServer
Server
(
Comp
);
Ice
::
BrowserCompileServer
Server
(
Comp
);
Server
.
run
();
Server
.
run
();
...
...
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