fix: add <cstdint> to math/**

This commit is contained in:
realstealthninja
2024-08-31 11:29:17 +05:30
parent 2ec9d7fe49
commit afd4ccbc5e
23 changed files with 196 additions and 162 deletions

View File

@@ -10,9 +10,9 @@
#include <cassert> /// for assert
#include <cmath> /// for `std::sqrt`
#include <cstdint> /// for integral typedefs
#include <iostream> /// for IO operations
#include <limits> /// for numeric_limits
/**
* @brief This is the function that calculates the fast inverse square root.
* The following code is the fast inverse square root implementation from