Fix a few more compiler warnings

Signed-off-by: Ske <voltasalt@gmail.com>
This commit is contained in:
Ske
2021-05-07 10:56:15 +02:00
parent dd2c669cd2
commit dbde8c07ad
6 changed files with 18 additions and 12 deletions

View File

@@ -10,7 +10,7 @@ namespace PluralKit.Core
{
public Task PrepareAsync(CancellationToken ct = default);
public Task<int> ExecuteNonQueryAsync(CancellationToken ct = default);
public Task<object> ExecuteScalarAsync(CancellationToken ct = default);
public Task<object?> ExecuteScalarAsync(CancellationToken ct = default);
public Task<DbDataReader> ExecuteReaderAsync(CancellationToken ct = default);
public Task<DbDataReader> ExecuteReaderAsync(CommandBehavior behavior, CancellationToken ct = default);
}