]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Common header file change not applicable to open-vm-tools.
authorJohn Wolfe <jwolfe@vmware.com>
Mon, 4 Apr 2022 19:58:41 +0000 (12:58 -0700)
committerJohn Wolfe <jwolfe@vmware.com>
Mon, 4 Apr 2022 19:58:41 +0000 (12:58 -0700)
open-vm-tools/lib/include/vm_basic_types.h

index d4005b4c763ccbbc06ccac0f6000e5046fb2db61..75ae69b2614a5177046461ac595714c9a4369820 100644 (file)
@@ -772,11 +772,11 @@ typedef void * UserVA;
 #endif
 
 /*
- * Similarly, we require a compiler that is at least vs2013.
+ * Similarly, we require a compiler that is at least vs2015.
  * Enforce this here.
  */
-#if defined _MSC_VER && _MSC_VER < 1800
-#error "cl.exe version is too old, need vs2013 or better"
+#if defined _MSC_VER && _MSC_VER < 1900
+#error "cl.exe version is too old, need vs2015 or better"
 #endif