Skip to content

Commit 1333879

Browse files
committed
rename FlashFormatterClass to FlashFormatterBase
1 parent fd5c648 commit 1333879

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/flashFormatter/C33FlashFormatter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#include "LittleFileSystem.h"
1313
#include "FATFileSystem.h"
1414

15-
class C33FlashFormatter : public FlashFormatterClass {
15+
class C33FlashFormatter : public FlashFormatterBase {
1616
public:
1717
C33FlashFormatter();
1818
protected:

src/flashFormatter/FlashFormatter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ using FlashFormatter = MBEDH7FlashFormatter;
1515
using FlashFormatter = C33FlashFormatter;
1616
#else
1717
#include "FlashFormatterBase.h"
18-
using FlashFormatter = FlashFormatterClass;
18+
using FlashFormatter = FlashFormatterBase;
1919
#endif

src/flashFormatter/FlashFormatterBase.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#pragma once
99
#include <Arduino.h>
1010

11-
class FlashFormatterClass {
11+
class FlashFormatterBase {
1212
public:
13-
virtual ~FlashFormatterClass() = default;
13+
virtual ~FlashFormatterBase() = default;
1414
virtual bool checkAndFormatPartition() {
1515
if(checkPartition()){
1616
return true;

src/flashFormatter/H7FlashFormatter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#include "LittleFileSystem.h"
1313
#include "FATFileSystem.h"
1414

15-
class MBEDH7FlashFormatter : public FlashFormatterClass {
15+
class MBEDH7FlashFormatter : public FlashFormatterBase {
1616
public:
1717
MBEDH7FlashFormatter();
1818

0 commit comments

Comments
 (0)