Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 13 lines 962 B view raw
1diff --git a/src/lib/kytea-util.cpp b/src/lib/kytea-util.cpp 2index 7c8c4c6..4492df1 100644 3--- a/src/lib/kytea-util.cpp 4+++ b/src/lib/kytea-util.cpp 5@@ -49,5 +49,8 @@ void checkValueVecEqual(const std::vector<T> * a, const std::vector<T> * b) { 6 7+template void checkValueVecEqual(const std::vector<unsigned int> & a, const std::vector<unsigned int> & b); 8 template void checkValueVecEqual(const std::vector<unsigned int> * a, const std::vector<unsigned int> * b); 9+template void checkValueVecEqual(const std::vector<short> & a, const std::vector<short> & b); 10 template void checkValueVecEqual(const std::vector<short> * a, const std::vector<short> * b); 11 template void checkValueVecEqual(const std::vector<vector<KyteaString> > * a, const std::vector<vector<KyteaString> > * b); 12+template void checkValueVecEqual(const std::vector<int> & a, const std::vector<int> & b); 13 template void checkValueVecEqual(const std::vector<int> * a, const std::vector<int> * b);