diff options
author | Joerg Bornemann <joerg.bornemann@qt.io> | 2018-03-27 13:04:01 +0200 |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@qt.io> | 2018-03-27 12:41:35 +0000 |
commit | af939831f871f06a527b4e79f0bf0ab49379c71a (patch) | |
tree | 0b02f5b93619f57d4f26a10e9a7f615372bd0b29 /src/libs/sqlite | |
parent | 3bce4b9af27d7799062d8798e476d610f7241c03 (diff) | |
download | qt-creator-af939831f871f06a527b4e79f0bf0ab49379c71a.tar.gz |
ClangSupport: Fix qbs build after incomplete refactoring
Remove files that are not supposed to be built anymore.
These were removed from the .pro file, but the .qbs file
picks them up, because it uses wildcards.
Change-Id: I457044147153baadcc223ff7e9d6b5497dd80fc0
Reviewed-by: Marco Bubke <marco.bubke@qt.io>
Diffstat (limited to 'src/libs/sqlite')
-rw-r--r-- | src/libs/sqlite/sqlitetransaction.cpp | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/libs/sqlite/sqlitetransaction.cpp b/src/libs/sqlite/sqlitetransaction.cpp deleted file mode 100644 index b2ebd101a1..0000000000 --- a/src/libs/sqlite/sqlitetransaction.cpp +++ /dev/null @@ -1,38 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2016 The Qt Company Ltd. -** Contact: https://www.qt.io/licensing/ -** -** This file is part of Qt Creator. -** -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 as published by the Free Software -** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -****************************************************************************/ - -#include "sqlitetransaction.h" - -#include "sqlitedatabase.h" -#include "sqlitedatabasebackend.h" -#include "sqlitewritestatement.h" - -namespace Sqlite { - -TransactionInterface::~TransactionInterface() -{ -} - -} // namespace Sqlite |