Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(618)

Unified Diff: securemem.h

Issue 7326013: GCC 4.6 warnings cleanup (Closed) Base URL: http://seccompsandbox.googlecode.com/svn/trunk/
Patch Set: '' Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mprotect.cc ('k') | sigaction.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: securemem.h
===================================================================
--- securemem.h (revision 168)
+++ securemem.h (working copy)
@@ -168,37 +168,48 @@
}
template<class T1> static
void sendSystemCall(const SyscallRequestInfo& rpc, LockType type, T1 arg1) {
- sendSystemCallInternal(rpc, type, (void*)arg1);
+ sendSystemCallInternal(rpc, type, reinterpret_cast<void*>(arg1));
}
template<class T1, class T2> static
void sendSystemCall(const SyscallRequestInfo& rpc, LockType type,
T1 arg1, T2 arg2) {
- sendSystemCallInternal(rpc, type, (void*)arg1, (void*)arg2);
+ sendSystemCallInternal(rpc, type, reinterpret_cast<void*>(arg1),
+ reinterpret_cast<void*>(arg2));
}
template<class T1, class T2, class T3> static
void sendSystemCall(const SyscallRequestInfo& rpc, LockType type,
T1 arg1, T2 arg2, T3 arg3) {
- sendSystemCallInternal(rpc, type, (void*)arg1, (void*)arg2, (void*)arg3);
+ sendSystemCallInternal(rpc, type, reinterpret_cast<void*>(arg1),
+ reinterpret_cast<void*>(arg2),
+ reinterpret_cast<void*>(arg3));
}
template<class T1, class T2, class T3, class T4> static
void sendSystemCall(const SyscallRequestInfo& rpc, LockType type,
T1 arg1, T2 arg2, T3 arg3, T4 arg4) {
- sendSystemCallInternal(rpc, type, (void*)arg1, (void*)arg2, (void*)arg3,
- (void*)arg4);
+ sendSystemCallInternal(rpc, type, reinterpret_cast<void*>(arg1),
+ reinterpret_cast<void*>(arg2),
+ reinterpret_cast<void*>(arg3),
+ reinterpret_cast<void*>(arg4));
}
template<class T1, class T2, class T3, class T4, class T5> static
void sendSystemCall(const SyscallRequestInfo& rpc, LockType type,
T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5) {
- sendSystemCallInternal(rpc, type, (void*)arg1, (void*)arg2, (void*)arg3,
- (void*)arg4, (void*)arg5);
+ sendSystemCallInternal(rpc, type, reinterpret_cast<void*>(arg1),
+ reinterpret_cast<void*>(arg2),
+ reinterpret_cast<void*>(arg3),
+ reinterpret_cast<void*>(arg4),
+ reinterpret_cast<void*>(arg5));
}
template<class T1, class T2, class T3, class T4, class T5, class T6> static
void sendSystemCall(const SyscallRequestInfo& rpc, LockType type,
T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6,
Args* newSecureMem = 0) {
- sendSystemCallInternal(rpc, type, (void*)arg1, (void*)arg2, (void*)arg3,
- (void*)arg4, (void*)arg5, (void*)arg6,
- newSecureMem);
+ sendSystemCallInternal(rpc, type, reinterpret_cast<void*>(arg1),
+ reinterpret_cast<void*>(arg2),
+ reinterpret_cast<void*>(arg3),
+ reinterpret_cast<void*>(arg4),
+ reinterpret_cast<void*>(arg5),
+ reinterpret_cast<void*>(arg6), newSecureMem);
}
private:
« no previous file with comments | « mprotect.cc ('k') | sigaction.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698