From d6c28b11e51d08be2555ba7371d9bbb063aae9af Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 25 Feb 2016 11:09:09 +0200 Subject: convert OSQLStatementType to scoped enum Change-Id: I2df117cf0f405e88899e7ccab380156284720449 --- include/connectivity/sqliterator.hxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'include/connectivity') diff --git a/include/connectivity/sqliterator.hxx b/include/connectivity/sqliterator.hxx index 6ff72db3cf6c..7c4ce67d29ce 100644 --- a/include/connectivity/sqliterator.hxx +++ b/include/connectivity/sqliterator.hxx @@ -42,14 +42,14 @@ namespace connectivity typedef ::std::pair TNodePair; - enum OSQLStatementType { - SQL_STATEMENT_UNKNOWN, - SQL_STATEMENT_SELECT, - SQL_STATEMENT_INSERT, - SQL_STATEMENT_UPDATE, - SQL_STATEMENT_DELETE, - SQL_STATEMENT_ODBC_CALL, - SQL_STATEMENT_CREATE_TABLE + enum class OSQLStatementType { + Unknown, + Select, + Insert, + Update, + Delete, + OdbcCall, + CreateTable }; struct OSQLParseTreeIteratorImpl; -- cgit