Skip to content

Commit 3966b8b

Browse files
committed
Fixing SonarCloud build
1 parent 0d05163 commit 3966b8b

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

source/utilities/base64.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// This code is licensed under MIT license (see LICENSE.txt for details)
55
// ---------------------------------------
66

7-
#include "Base64.hpp"
7+
#include "base64.hpp"
88

99
static const char* B64chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
1010

tests/db.mm

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
// This code is licensed under MIT license (see LICENSE.txt for details)
55
// ---------------------------------------
66

7-
// Using the Objective-C Framework to build XCTestCases
8-
97
#import <XCTest/XCTest.h>
108
#import "application.hpp"
119
#import "databaseConnection.hpp"
1210

11+
// Using the Objective-C Framework to build XCTestCases
12+
// This code is a mix of Objective-C and C++, commonly referred to as Objective-C++.
13+
// This is possible because .mm files in Apple's ecosystem allow Objective-C and C++ code to coexist.
14+
1315
@interface dbtests : XCTestCase
1416
@end
1517

tests/tests.mm

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@
44
// This code is licensed under MIT license (see LICENSE.txt for details)
55
// ---------------------------------------
66

7+
78
#import <XCTest/XCTest.h>
89
#import "application.hpp"
910
#import "databaseConnection.hpp"
1011

12+
// Using the Objective-C Framework to build XCTestCases
13+
// This code is a mix of Objective-C and C++, commonly referred to as Objective-C++.
14+
// This is possible because .mm files in Apple's ecosystem allow Objective-C and C++ code to coexist.
15+
1116
@interface tests : XCTestCase
1217
@end
1318

0 commit comments

Comments
 (0)