Skip to content
Snippets Groups Projects
Commit c15ab344 authored by Michael Davis's avatar Michael Davis
Browse files

Changes std::make_unique to cta::make_unique

parent 5ef9b7f3
No related branches found
No related tags found
No related merge requests found
......@@ -16,12 +16,11 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <memory>
#include <common/make_unique.hpp>
#include <rdbms/Login.hpp>
#include <rdbms/ConnPool.hpp>
namespace cta {
namespace migration {
......@@ -50,7 +49,7 @@ public:
void query(const std::string &sqlString) {
auto sql = m_conn.createStmt(sqlString);
m_rSet = std::make_unique<rdbms::Rset>(sql.executeQuery());
m_rSet = cta::make_unique<rdbms::Rset>(sql.executeQuery());
m_queryIsEmpty = !m_rSet->next();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment