Index: /trunk/boost/unordered/unordered_set.hpp =================================================================== --- misc/boost_1_44_0/boost/unordered/unordered_set.hpp (revision 60754) +++ misc/build/boost_1_44_0/boost/unordered/unordered_set.hpp (revision 68445) @@ -155,4 +155,9 @@ #if !defined(BOOST_NO_RVALUE_REFERENCES) + unordered_set(unordered_set const& other) + : table_(other.table_) + { + } + unordered_set(unordered_set&& other) : table_(other.table_, boost::unordered_detail::move_tag()) @@ -163,4 +168,10 @@ : table_(other.table_, a, boost::unordered_detail::move_tag()) { + } + + unordered_set& operator=(unordered_set const& x) + { + table_ = x.table_; + return *this; } @@ -652,4 +663,9 @@ #if !defined(BOOST_NO_RVALUE_REFERENCES) + unordered_multiset(unordered_multiset const& other) + : table_(other.table_) + { + } + unordered_multiset(unordered_multiset&& other) : table_(other.table_, boost::unordered_detail::move_tag()) @@ -660,4 +676,10 @@ : table_(other.table_, a, boost::unordered_detail::move_tag()) { + } + + unordered_multiset& operator=(unordered_multiset const& x) + { + table_ = x.table_; + return *this; } Index: /trunk/boost/unordered/unordered_map.hpp =================================================================== --- misc/boost_1_44_0/boost/unordered/unordered_map.hpp (revision 60754) +++ misc/build/boost_1_44_0/boost/unordered/unordered_map.hpp (revision 68445) @@ -161,4 +161,9 @@ #if !defined(BOOST_NO_RVALUE_REFERENCES) + unordered_map(unordered_map const& other) + : table_(other.table_) + { + } + unordered_map(unordered_map&& other) : table_(other.table_, boost::unordered_detail::move_tag()) @@ -169,4 +174,10 @@ : table_(other.table_, a, boost::unordered_detail::move_tag()) { + } + + unordered_map& operator=(unordered_map const& x) + { + table_ = x.table_; + return *this; } @@ -706,4 +717,9 @@ #if !defined(BOOST_NO_RVALUE_REFERENCES) + unordered_multimap(unordered_multimap const& other) + : table_(other.table_) + { + } + unordered_multimap(unordered_multimap&& other) : table_(other.table_, boost::unordered_detail::move_tag()) @@ -714,4 +730,10 @@ : table_(other.table_, a, boost::unordered_detail::move_tag()) { + } + + unordered_multimap& operator=(unordered_multimap const& x) + { + table_ = x.table_; + return *this; } p-4.0 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/uitest
into idl
AgeCommit message (Expand)Author
2023-11-06uitest: Clean up redundant usage of gb_UITest_use_oneprocessXisco Fauli
2023-11-02uitest: check that dialog really did openNoel Grandin
2023-10-16Fix UITests on WindowsMike Kaganski
2023-10-05SW comments: Provide parent / child relations without position.Gökay Şatır
2023-10-04uitest: add load properties parametersHenry Castro
2023-10-04uitest: flush print messagesHenry Castro
2023-10-04uitest: add signal_handler functionHenry Castro
2023-09-28UITest_impress_demo: use oneprocess modeMiklos Vajna
2023-09-21UITest_writer_tests7: use oneprocess modeMiklos Vajna
2023-09-18tdf#111705: Add Arabic math symbols to the symbols catalogueKhaled Hosny
2023-09-18starmath: Show editing window by default againKhaled Hosny
2023-09-13starmath: Hide editing window by default and add a menu item to showKhaled Hosny
2023-09-05starmath: Always insert using SmCursor when inline editing is enabledKhaled Hosny
Noel Grandin
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2015-10-06loplugin:unusedmethodsNoel Grandin
2015-10-06 tdf#94559: 4th step to remove rtti.hxxOliver Specht
2015-10-01loplugin:unusedmethodsNoel Grandin
2015-09-30 tdf#94559: second step to remove rtti.hxxOliver Specht
2015-09-29loplugin:removeunusedmethods, remove unused stuffNoel Grandin
2015-09-08loplugin:mergeclasses merge SvMetaObject with SvMetaNameNoel Grandin
2015-09-08loplugin:mergeclasses SvIdentifierNoel Grandin
2015-08-12idl: add article that has details on SDI file formatMiklos Vajna
2015-08-05loplugin:unusedmethodsNoel Grandin
2015-08-04idl,framework,forms: inline some use-once typedefsNoel Grandin
2015-08-03-Werror,-Wunused-private-fieldStephan Bergmann
2015-07-30loplugin:unusedmethodsNoel Grandin
2015-07-28remove unused STC checkNoel Grandin
2015-07-27inline a bunch of use-once macrosNoel Grandin
2015-07-07Replace GetAppData(SHL_IDL) with an rtl::StaticStephan Bergmann
2015-07-06improve the returnbyref lopluginNoel Grandin
2015-07-03Fix typosAndrea Gelmini
2015-06-26loplugin:stringconstant: handle OUString+=OUString(literal)Stephan Bergmann
2015-05-29loplugin:loopvartoosmallNoel Grandin
2015-05-11loplugin:cstylecast: nop between pointer types of exactly same spellingStephan Bergmann
2015-04-24loplugin:simplifyboolStephan Bergmann
2015-04-23Improved loplugin:literaltoboolconversion looking into cond. exprs.Stephan Bergmann
2015-04-17loplugin:implicitboolconversion clean-upStephan Bergmann
2015-04-07loplugin:staticmethodsNoel Grandin
2015-03-28Clean up C-style casts from pointers to voidStephan Bergmann
2015-03-26const_cast: convert some C-style casts and remove some redundant onesStephan Bergmann
2015-02-25convert SFX_SLOT_ constants to enum classNoel Grandin
2015-02-23remove unnecessary parenthesis in return statementsNoel Grandin
2015-01-28remove unused typedefsNoel Grandin
2015-01-26followup code removal after changing virtual methods to non-virtualNoel Grandin
2015-01-26new loplugin: change virtual methods to non-virtualNoel Grandin