Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Win32 compile fix #52

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions hlslang.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,6 @@
<ClCompile Include="hlslang\GLSLCodeGen\typeSamplers.cpp">
<Filter>GLSL Code Gen</Filter>
</ClCompile>
<ClCompile Include="hlslang\OSDependent\Windows\main.cpp">
<Filter>OSDependent\Windows</Filter>
</ClCompile>
<ClCompile Include="hlslang\OSDependent\Windows\ossource.cpp">
<Filter>OSDependent\Windows</Filter>
</ClCompile>
Expand Down
1 change: 1 addition & 0 deletions hlslang/MachineIndependent/Intermediate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include "ParseHelper.h"
#include <float.h>
#include <limits.h>
#include <algorithm>

static TPrecision GetHigherPrecision (TPrecision left, TPrecision right) {
return left > right ? left : right;
Expand Down
Empty file.