Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
Remove unnecessary __attribute__((optnone)).
Browse files Browse the repository at this point in the history
Bug: 23239997

Now that the underlying bug has been fixed, we no longer need to
suppress optimizations to work around it.

Change-Id: I9d450636598f62f4b890e09861b89853193b0a29
  • Loading branch information
stephenhines committed Aug 18, 2015
1 parent de3eb3c commit 996f037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/FwmarkClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ FwmarkClient::~FwmarkClient() {
}
}

int __attribute__((optnone)) FwmarkClient::send(FwmarkCommand* data, int fd) {
int FwmarkClient::send(FwmarkCommand* data, int fd) {
mChannel = socket(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0);
if (mChannel == -1) {
return -errno;
Expand Down

0 comments on commit 996f037

Please sign in to comment.