Skip to content

Commit

Permalink
update windows platform_dep comment
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishavlin committed Sep 5, 2024
1 parent 4c7541a commit b5932b6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion yt/utilities/lib/platform_dep.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
#include <math.h>
#ifdef MS_WIN32
#include "malloc.h"
// note: the following implicitly requires _MSC_VER >= 1928 (VS 2019, 16.8)
/*
note: the following implicitly sets a mininum VS version: conservative
minumum is _MSC_VER >= 1928 (VS 2019, 16.8), but may work for VS 2015
but that has not been tested. see https://github.com/yt-project/yt/pull/4980
and https://learn.microsoft.com/en-us/cpp/overview/visual-cpp-language-conformance
*/
#include <float.h>
#include <stdint.h>
#elif defined(__FreeBSD__)
Expand Down

0 comments on commit b5932b6

Please sign in to comment.