From 4801aa3ae0e12b2659268b0c2223aac11624a904 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Fri, 8 Nov 2024 14:51:34 -0600 Subject: [PATCH] chore(SQLite): remove unnecessary typedef --- Data/SQLite/include/Poco/Data/SQLite/Extractor.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/Data/SQLite/include/Poco/Data/SQLite/Extractor.h b/Data/SQLite/include/Poco/Data/SQLite/Extractor.h index 3e502d5f9c..e88487b32b 100644 --- a/Data/SQLite/include/Poco/Data/SQLite/Extractor.h +++ b/Data/SQLite/include/Poco/Data/SQLite/Extractor.h @@ -51,9 +51,6 @@ class SQLite_API Extractor: public Poco::Data::AbstractExtractor using NullIndVec = std::vector >; /// Type for null indicators container. - using ColFuncPtr = int (*)(sqlite3_stmt*, int); - /// SQLite column function pointer. - Extractor(sqlite3_stmt* pStmt); /// Creates the Extractor.