+3844. [bug] Use the x64 version of the Microsoft Visual C++
+ Redistributable when built for 64 bit Windows.
+ (Thanks to Giovanni Paterno.) [RT #35973]
+
3844. [doc] Remove documention for yet to be committed RRL
changes. [RT #35897]
* Enclose full path to Vcredist_x86.exe in quotes as
* m_currentDir may contain spaces.
*/
+#ifndef _WIN64
sprintf(Vcredist_x86, "\"%s\\Vcredist_x86.exe\"",
(LPCTSTR) m_currentDir);
+#else
+ sprintf(Vcredist_x86, "\"%s\\Vcredist_x64.exe\"",
+ (LPCTSTR) m_currentDir);
+#endif
system(Vcredist_x86);
#endif
try {