diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-04-14T11·59+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-04-14T11·59+0200 |
commit | 6520b757c58df15a2d5d5daf234ff7a7740049cd (patch) | |
tree | 80a59a47f6c270483b78faeb5f0fdfbdfb0d6440 /src/libutil/config.cc | |
parent | 3b36c64b15ac31f56c13591092c8a24aff4ee6c2 (diff) |
Fix 32-bit build
http://hydra.nixos.org/build/51569816
Diffstat (limited to 'src/libutil/config.cc')
-rw-r--r-- | src/libutil/config.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libutil/config.cc b/src/libutil/config.cc index 85e5ce330bee..e7a810cec4d2 100644 --- a/src/libutil/config.cc +++ b/src/libutil/config.cc @@ -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) { |