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:
authorKenneth Heafield <github@kheafield.com>2020-04-19 14:24:37 +0300
committerKenneth Heafield <github@kheafield.com>2020-04-19 14:24:37 +0300
commit08853168bb964930fcbd813d3d33684b9cb917a4 (patch)
tree16d81400d63ace2bd921ac4ced94c2d3252ea867
parenta876043147c9ee6b7992b0bc23acd24ed475f7ea (diff)
Change Index to size_t
-rw-r--r--types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/types.h b/types.h
index 9bc8111..f850967 100644
--- a/types.h
+++ b/types.h
@@ -33,7 +33,7 @@ class UnsupportedCPU : public std::exception {
}
};
-typedef unsigned int Index;
+typedef std::size_t Index;
// If you want to detect the CPU and dispatch yourself, here's what to use:
enum class CPUType {