diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2011-02-08 19:46:39 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2011-02-08 19:48:38 +0100 |
commit | 889a2487d2c1c1fa97a7efe30ad09f647f5e28e5 (patch) | |
tree | e1aabc80ad53328de7f793359b9e472f07c6aef3 /dbaccess/source | |
parent | 15c6c2085a8261e2c4ac86d6862d1947894411e0 (diff) |
std::bit_vector -> std::vector<bool>
Diffstat (limited to 'dbaccess/source')
-rw-r--r-- | dbaccess/source/core/api/RowSet.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/core/api/RowSet.hxx b/dbaccess/source/core/api/RowSet.hxx index fb20dd8c2002..891d4a2f18ae 100644 --- a/dbaccess/source/core/api/RowSet.hxx +++ b/dbaccess/source/core/api/RowSet.hxx @@ -100,8 +100,8 @@ namespace dbaccess */ ORowSetValueVector m_aPrematureParamValues; ORowSetValueVector m_aParameterValueForCache; - ::std::bit_vector m_aParametersSet; - ::std::bit_vector m_aReadOnlyDataColumns; + ::std::vector<bool> m_aParametersSet; + ::std::vector<bool> m_aReadOnlyDataColumns; ::cppu::OInterfaceContainerHelper m_aRowsetListeners; ::cppu::OInterfaceContainerHelper m_aApproveListeners; |