/** @file ***************************************************************************** Implementation of templatized utility functions ***************************************************************************** * @author This file is part of libsnark, developed by SCIPR Lab * and contributors (see AUTHORS). * @copyright MIT license (see LICENSE file) *****************************************************************************/ #ifndef UTILS_TCC_ #define UTILS_TCC_ namespace libsnark { #ifdef __APPLE__ template unsigned long size_in_bits(const std::vector &v) { return v.size() * T::size_in_bits(); } #else template size_t size_in_bits(const std::vector &v) { return v.size() * T::size_in_bits(); } #endif } // libsnark #endif // UTILS_TCC_