diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-09 17:36:43 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 18:32:02 +0100 |
commit | 317118c1c85c57d23d6b5c7c2dcf680a8d591841 (patch) | |
tree | e813d86b572fbe5737c8ef8ffb248b54bf643912 /basegfx | |
parent | df808bec43ce5204b9b6730e91bef17bf1557ee9 (diff) |
Avoid reserved identifiers
Change-Id: I036cb407c29ee375e1893b7418c7fa63bf1d592a
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/inc/hommatrixtemplate.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/basegfx/source/inc/hommatrixtemplate.hxx b/basegfx/source/inc/hommatrixtemplate.hxx index 76dc8a525801..ec527d7d8561 100644 --- a/basegfx/source/inc/hommatrixtemplate.hxx +++ b/basegfx/source/inc/hommatrixtemplate.hxx @@ -37,9 +37,9 @@ namespace basegfx return 0.0; } - template < unsigned int _RowSize > class ImplMatLine + template < unsigned int RowSize_ > class ImplMatLine { - enum { RowSize = _RowSize }; + enum { RowSize = RowSize_ }; double mfValue[RowSize]; @@ -74,9 +74,9 @@ namespace basegfx } }; - template < unsigned int _RowSize > class ImplHomMatrixTemplate + template < unsigned int RowSize_ > class ImplHomMatrixTemplate { - enum { RowSize = _RowSize }; + enum { RowSize = RowSize_ }; ImplMatLine< RowSize > maLine[RowSize - 1]; ImplMatLine< RowSize >* mpLine; |