Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateusz Chudyk <mateuszchudyk@gmail.com>2020-01-31 01:44:38 +0300
committerGitHub <noreply@github.com>2020-01-31 01:44:38 +0300
commitdc02f9526668e4fe877208f67bc9ce9e7822a585 (patch)
tree842525a9700341c37f25d044288c42b19fb8b790
parent695dbb28dbf080ccfd5ac8cbb5d3a58c460cf193 (diff)
parent861274813aebc16b5277fa24ef630fb19aceca7b (diff)
Merge pull request #60 from kpu/fix-syntax-error
Fix syntax error in catch.hpp
-rw-r--r--3rd_party/catch.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/3rd_party/catch.hpp b/3rd_party/catch.hpp
index 1850fff..936491d 100644
--- a/3rd_party/catch.hpp
+++ b/3rd_party/catch.hpp
@@ -7728,8 +7728,7 @@ namespace detail {
}
};
- template<typename DerivedT>
- template<typename T>
+ template<typename DerivedT, typename T>
auto ComposableParserImpl<DerivedT>::operator|( T const &other ) const -> Parser {
return Parser() | static_cast<DerivedT const &>( *this ) | other;
}