Skip to content

Commit

Permalink
Add include file available checks
Browse files Browse the repository at this point in the history
  • Loading branch information
devatrun committed Sep 14, 2021
1 parent dcb622b commit 0a27cc4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/slimcpplib/long_uint.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,14 @@
#pragma once

#include "long_math.h"

#if __has_include("long_math_gcc.h")
#include "long_math_gcc.h"
#endif // __has_include("long_math_gcc.h")

#if __has_include("long_math_msvc.h")
#include "long_math_msvc.h"
#endif // __has_include("long_math_msvc.h")

#include <optional>

Expand Down

0 comments on commit 0a27cc4

Please sign in to comment.