diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-12 12:00:35 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-12 13:15:40 +0200 |
commit | 48b200a0a2aa70a7dfc0aad8a4964690ae11d42e (patch) | |
tree | c23ca5f8d827ba2e99783d80fac21073dd242147 /svtools/source/svhtml | |
parent | 65b756f6058697ccb787506c3cc32e1e818bcc37 (diff) |
clang-tidy modernize-use-emplace in svgio..svtools
Change-Id: I4f3b0762e197d5397e723aba1dc43e3c857be145
Reviewed-on: https://gerrit.libreoffice.org/42193
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools/source/svhtml')
-rw-r--r-- | svtools/source/svhtml/parhtml.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/svhtml/parhtml.cxx b/svtools/source/svhtml/parhtml.cxx index 0458e5225c9d..1ec0aa655c5f 100644 --- a/svtools/source/svhtml/parhtml.cxx +++ b/svtools/source/svhtml/parhtml.cxx @@ -1523,7 +1523,7 @@ const HTMLOptions& HTMLParser::GetOptions( HtmlOptionId const *pNoConvertToken ) } // Token is known and can be saved - maOptions.push_back(HTMLOption(nToken, sName, aValue)); + maOptions.emplace_back(nToken, sName, aValue); } else |