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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '3party/agg/agg_basics.h')
-rw-r--r--3party/agg/agg_basics.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/3party/agg/agg_basics.h b/3party/agg/agg_basics.h
index b3071b1bb8..8e17fafce5 100644
--- a/3party/agg/agg_basics.h
+++ b/3party/agg/agg_basics.h
@@ -203,7 +203,7 @@ namespace agg
{
AGG_INLINE static unsigned mul(unsigned a, unsigned b)
{
- register unsigned q = a * b + (1 << (Shift-1));
+ unsigned q = a * b + (1 << (Shift-1));
return (q + (q >> Shift)) >> Shift;
}
};