mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
C standard library functions and types are now prefixed with std:: (#227)
This commit is contained in:
committed by
Peter Johnson
parent
dbe03afb9a
commit
087eeec760
@@ -206,7 +206,7 @@ void CameraServer::Serve() {
|
||||
continue;
|
||||
}
|
||||
|
||||
memcpy(&req, reqBuf, sizeof(req));
|
||||
std::memcpy(&req, reqBuf, sizeof(req));
|
||||
req.fps = ntohl(req.fps);
|
||||
req.compression = ntohl(req.compression);
|
||||
req.size = ntohl(req.size);
|
||||
|
||||
Reference in New Issue
Block a user