From a5be07d6b627a18f104e2feed063ff9020e8c610 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 18 Dec 2017 14:24:50 +0200 Subject: inline use-once typedefs Change-Id: I5c3ffc03c26b3428f1f336e6ecba7838a1cf1157 Reviewed-on: https://gerrit.libreoffice.org/46764 Tested-by: Jenkins Reviewed-by: Noel Grandin --- configmgr/source/xcuparser.hxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'configmgr/source') diff --git a/configmgr/source/xcuparser.hxx b/configmgr/source/xcuparser.hxx index ec40372fed1d..bd74d434c612 100644 --- a/configmgr/source/xcuparser.hxx +++ b/configmgr/source/xcuparser.hxx @@ -135,8 +135,6 @@ private: {} }; - typedef std::stack< State > StateStack; - ValueParser valueParser_; Data & data_; Partial const * partial_; @@ -145,7 +143,7 @@ private: bool recordModifications_; bool trackPath_; OUString componentName_; - StateStack state_; + std::stack< State > state_; std::vector path_; }; -- cgit