Skip to content

Commit

Permalink
ocean | demo | Silence set but not used variable warning.
Browse files Browse the repository at this point in the history
Summary: Silence the warning, since maybe useful.

Reviewed By: boguscoder, enpe

Differential Revision: D64487252

fbshipit-source-id: 988384ee41726fe417446cd8008cbc76a59ef6ac
  • Loading branch information
nlutsenko authored and facebook-github-bot committed Oct 16, 2024
1 parent a2c9161 commit 2b152a9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,8 @@ bool OculusTagTrackerWrapper::trackNewFrame(Frame& resultFrame, double& time)
bool trackerResult = false;

performance_.start();
trackerResult = oculusTagTracker_.trackTagsStereo(*anyCameras[cameraIndex0], *anyCameras[cameraIndex1], yFrames[0], yFrames[1], HomogenousMatrix4(world_T_device), HomogenousMatrix4(device_T_cameras[0]), HomogenousMatrix4(device_T_cameras[1]), trackedTags);
trackerResult = oculusTagTracker_.trackTagsStereo(*anyCameras[cameraIndex0], *anyCameras[cameraIndex1], yFrames[0], yFrames[1], HomogenousMatrix4(world_T_device), HomogenousMatrix4(device_T_cameras[0]), HomogenousMatrix4(device_T_cameras[1]), trackedTags);
(void)trackerResult;
performance_.stop();

const OculusTagTracker::TrackedTagMap& trackedTagMap = oculusTagTracker_.trackedTagMap();
Expand Down

0 comments on commit 2b152a9

Please sign in to comment.