Skip to content
Snippets Groups Projects
Commit d90155b3 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[App] Python; Drop unused cast to volatile T.

The warning is issued by MSVC:
Compiler Warning (level 3) C4197.
type' : top-level volatile in cast is ignored
parent e79dc462
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ PYBIND11_EMBEDDED_MODULE(OpenGeoSys, m) ...@@ -28,7 +28,7 @@ PYBIND11_EMBEDDED_MODULE(OpenGeoSys, m)
template <typename T> template <typename T>
void mark_used(T p) void mark_used(T p)
{ {
volatile T vp = (volatile T)p; volatile T vp = p;
vp = vp; vp = vp;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment