diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-01 14:18:28 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-02 06:36:48 +0000 |
commit | 1517caa433b001968643ebcdca01c53bf76034d2 (patch) | |
tree | 75adad41c99afe90eee48f866f99784e24acd2e3 /basegfx/source/inc | |
parent | 06eb947c1651cb623cd60d81b08281de4cc6a86b (diff) |
convert some anonymous enums to scoped
Change-Id: Ia989376c983ff475359e4964abeb1f5a2300ff5b
Reviewed-on: https://gerrit.libreoffice.org/31486
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basegfx/source/inc')
-rw-r--r-- | basegfx/source/inc/hommatrixtemplate.hxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/basegfx/source/inc/hommatrixtemplate.hxx b/basegfx/source/inc/hommatrixtemplate.hxx index f9b3e2260481..08c5b538f995 100644 --- a/basegfx/source/inc/hommatrixtemplate.hxx +++ b/basegfx/source/inc/hommatrixtemplate.hxx @@ -37,10 +37,8 @@ namespace basegfx return 0.0; } - template < unsigned int RowSize_ > class ImplMatLine + template < sal_uInt16 RowSize > class ImplMatLine { - enum { RowSize = RowSize_ }; - double mfValue[RowSize]; public: @@ -74,10 +72,8 @@ namespace basegfx } }; - template < unsigned int RowSize_ > class ImplHomMatrixTemplate + template < sal_uInt16 RowSize > class ImplHomMatrixTemplate { - enum { RowSize = RowSize_ }; - ImplMatLine< RowSize > maLine[RowSize - 1]; ImplMatLine< RowSize >* mpLine; |