summaryrefslogtreecommitdiff
path: root/tests/test_cases/cflags/public/main_use_half3f.cpp
blob: 3e855cdc05aa08e9a2a55d2b9bd1c755a55ed7be (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "half3f/half3f.hpp"
#include <iostream>

#ifdef HALF_PRECISION_DOUBLE
#error should not be defined
#endif

int main() {
  std::cout << half3f() << std::endl;
  return 0;
}