diff --git a/corsika/framework/utility/sgn.hpp b/corsika/framework/utility/sgn.hpp deleted file mode 100644 index 70c1265d655f97eadd89871ccabd1ed6b3abf37a..0000000000000000000000000000000000000000 --- a/corsika/framework/utility/sgn.hpp +++ /dev/null @@ -1,20 +0,0 @@ -/* - * (c) Copyright 2018 CORSIKA Project, corsika-project@lists.kit.edu - * - * - * This software is distributed under the terms of the GNU General Public - * Licence version 3 (GPL Version 3). See file LICENSE for a full version of - * the license. - */ - -#pragma once - -namespace corsika { - - //! sign function without branches - template <typename T> - static int sgn(T val) { - return (T(0) < val) - (val < T(0)); - } - -} // namespace corsika