Skip to content

Commit

Permalink
Allow clang builds that do not use long doubles.
Browse files Browse the repository at this point in the history
  • Loading branch information
sfantao committed Nov 8, 2023
1 parent 997ef2f commit 4ca53ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlsv_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ namespace vlsv {
case sizeof(double):
value = convertFloat<double>(buffer);
break;
#ifndef _WINDOWS
#if !(defined(_WINDOWS) || defined(__clang__))
case sizeof(long double):
#endif
value = convertFloat<long double>(buffer);
Expand Down

0 comments on commit 4ca53ed

Please sign in to comment.