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

github.com/marian-nmt/intgemm/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateusz Chudyk <mateuszchudyk@gmail.com>2020-02-05 22:31:46 +0300
committerMateusz Chudyk <mateuszchudyk@gmail.com>2020-02-05 22:31:46 +0300
commitebeec32e4b22312a77498e07c1c42656916e3ba0 (patch)
tree25ddcecd1796011cd4812078320ecd98c8bd2acf
parente396b6538f9971cb488f40f618dddb91d5a8a378 (diff)
Fix comment
-rw-r--r--utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.h b/utils.h
index abc87a4..7fa2f6e 100644
--- a/utils.h
+++ b/utils.h
@@ -166,7 +166,7 @@ using MakeStaticLoopIterator = StaticLoopIterator<0, Ns...>;
* struct Test {
* template <typename Iterator, typename Number>
* static inline void body(const char* text, Number number) {
- * std::cout << "[" << Iterator::template get<0>() << ", " << Iterator::template get<1>() << "] " << text << " " << number << std::endl;
+ * std::cout << "[" << Iterator::template I<0>() << ", " << Iterator::template I<1>() << "] " << text << " " << number << std::endl;
* }
* };
*