Fix 32-bit build

http://hydra.nixos.org/build/51569816
This commit is contained in:
Eelco Dolstra 2017-04-14 13:59:39 +02:00
parent 3b36c64b15
commit 6520b757c5
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -176,7 +176,9 @@ template<> std::string Setting<StringSet>::to_string()
template class Setting<int>;
template class Setting<unsigned int>;
template class Setting<long>;
template class Setting<size_t>;
template class Setting<unsigned long>;
template class Setting<long long>;
template class Setting<unsigned long long>;
void PathSetting::set(const std::string & str)
{