Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

shellext: use const char* in reinterpret_cast

This was not a bug. The new version is just a bit more explicit.

Changeset 1907f26c4132

Parent da416bb528f4

by Adrian Buehlmann

Changes to one file · Browse files at 1907f26c4132 Showing diff from parent da416bb528f4 Diff from another changeset...

 
108
109
110
111
 
112
113
114
 
108
109
110
 
111
112
113
114
@@ -108,7 +108,7 @@
  if (rv != ERROR_SUCCESS)   return 0;   - res = reinterpret_cast<char*>(&Data); + res = reinterpret_cast<const char*>(&Data);   return 1;  }