aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/Utils.h')
-rw-r--r--arm_compute/core/Utils.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/arm_compute/core/Utils.h b/arm_compute/core/Utils.h
index 22a1e7064d..7ab78be908 100644
--- a/arm_compute/core/Utils.h
+++ b/arm_compute/core/Utils.h
@@ -28,6 +28,7 @@
#include "arm_compute/core/PixelValue.h"
#include "arm_compute/core/Rounding.h"
#include "arm_compute/core/Types.h"
+#include "arm_compute/core/Version.h"
#include <algorithm>
#include <cstdint>
@@ -83,14 +84,6 @@ inline auto floor_to_multiple(S value, T divisor) -> decltype((value / divisor)
return (value / divisor) * divisor;
}
-/** Returns the arm_compute library build information
- *
- * Contains the version number and the build options used to build the library
- *
- * @return The arm_compute library build information
- */
-std::string build_information();
-
/** Load an entire file in memory
*
* @param[in] filename Name of the file to read.