diff options
author | Noel Grandin <noel@peralex.com> | 2012-08-07 16:56:51 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-08-08 13:53:07 +0300 |
commit | 016918cf9459eccc177bfedbe75c6296b3b4bb67 (patch) | |
tree | d6966ad5b74e79d8aff54cefb6e34309b671f8df /idl/inc/database.hxx | |
parent | 552cc040866bb2d25cf6187c92d9c4acd0db82d8 (diff) |
STL'ify SV_DECL_IMPL_PERSIST_LIST
Converts it to a template based on std::vector
Change-Id: Id7f89f494164c61a3a573cff443ac0e0488e93f1
Diffstat (limited to 'idl/inc/database.hxx')
-rw-r--r-- | idl/inc/database.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/idl/inc/database.hxx b/idl/inc/database.hxx index 5a64aac78976..7ce217520e88 100644 --- a/idl/inc/database.hxx +++ b/idl/inc/database.hxx @@ -79,7 +79,7 @@ protected: SvIdlError aError; void WriteReset() { - aUsedTypes.Clear(); + aUsedTypes.clear(); aIFaceName = rtl::OString(); } public: |