Skip to content

Commit

Permalink
fix: fix some error
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN committed Aug 5, 2024
1 parent 53d606b commit 9997ea5
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 32 deletions.
26 changes: 0 additions & 26 deletions src/mc/codebuilder/MCRESULT.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,80 +22,54 @@ struct MCRESULT {
// NOLINTEND
};

// symbol: ?MCRESULT_NoTargetsFound@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_NoTargetsFound;

// symbol: ?MCRESULT_CommandExecIncomplete@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_CommandExecIncomplete;

// symbol: ?MCRESULT_InvalidCommandCall@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_InvalidCommandCall;

// symbol: ?MCRESULT_AllTargetsWillFail@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_AllTargetsWillFail;

// symbol: ?MCRESULT_NoChatPermissions@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_NoChatPermissions;

// symbol: ?MCRESULT_ChatMuted@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_ChatMuted;

// symbol: ?MCRESULT_TooManyPendingRequests@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_TooManyPendingRequests;

// symbol: ?MCRESULT_ExpectedRequestMsg@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_ExpectedRequestMsg;

// symbol: ?MCRESULT_MustSpecifyVersion@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_MustSpecifyVersion;

// symbol: ?MCRESULT_CommandsDisabled@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_CommandsDisabled;

// symbol: ?MCRESULT_NotEnoughPermissions@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_NotEnoughPermissions;

// symbol: ?MCRESULT_MalformedRequest@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_MalformedRequest;

// symbol: ?MCRESULT_CommandStepDone@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_CommandStepDone;

// symbol: ?MCRESULT_CommandRequestInitiated@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_CommandRequestInitiated;

// symbol: ?MCRESULT_FailedToParseCommand@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_FailedToParseCommand;

// symbol: ?MCRESULT_NewCommandVersionAvailable@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_NewCommandVersionAvailable;

// symbol: ?MCRESULT_ExecutionFail@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_ExecutionFail;

// symbol: ?MCRESULT_Success@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_Success;

// symbol: ?MCRESULT_InvalidCommandContext@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_InvalidCommandContext;

// symbol: ?MCRESULT_CommandStepFail@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_CommandStepFail;

// symbol: ?MCRESULT_CommandNotFound@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_CommandNotFound;

// symbol: ?MCRESULT_CommandVersionMismatch@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_CommandVersionMismatch;

// symbol: ?MCRESULT_InvalidOverloadSyntax@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_InvalidOverloadSyntax;

// symbol: ?MCRESULT_VersionMismatch@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_VersionMismatch;

// symbol: ?MCRESULT_EncryptionRequired@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_EncryptionRequired;

// symbol: ?MCRESULT_FailWithoutFailMsg@@3UMCRESULT@@B
MCAPI extern struct MCRESULT const MCRESULT_FailWithoutFailMsg;
1 change: 0 additions & 1 deletion src/mc/locale/I18n.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,5 +116,4 @@ class I18n {
// NOLINTEND
};

// symbol: ?getI18n@@YAAEAVI18n@@XZ
MCAPI I18n& getI18n();
2 changes: 1 addition & 1 deletion src/mc/nbt/ByteTag.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class ByteTag : public ::Tag {
public:
// NOLINTBEGIN
// vIndex: 0
virtual ~ByteTag();
virtual ~ByteTag() = default;

// vIndex: 2
virtual void write(class IDataOutput& dos) const;
Expand Down
2 changes: 1 addition & 1 deletion src/mc/nbt/CompoundTag.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class CompoundTag : public ::Tag {
public:
// NOLINTBEGIN
// vIndex: 0
virtual ~CompoundTag();
virtual ~CompoundTag() = default;

// vIndex: 2
virtual void write(class IDataOutput& dos) const;
Expand Down
2 changes: 1 addition & 1 deletion src/mc/nbt/IntTag.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class IntTag : public ::Tag {
public:
// NOLINTBEGIN
// vIndex: 0
virtual ~IntTag();
virtual ~IntTag() = default;

// vIndex: 2
virtual void write(class IDataOutput& dos) const;
Expand Down
2 changes: 1 addition & 1 deletion src/mc/nbt/ListTag.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ListTag : public ::Tag, public std::vector<UniqueTagPtr> {
public:
// NOLINTBEGIN
// vIndex: 0
virtual ~ListTag();
virtual ~ListTag() = default;

// vIndex: 1
virtual void deleteChildren();
Expand Down
2 changes: 1 addition & 1 deletion src/mc/world/level/biome/source/FixedBiomeSource.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class FixedBiomeSource : public ::BiomeSource {
virtual class BiomeArea
getBiomeArea(class BoundingBox const& area, uint scale, struct GetBiomeOptions const&) const;

// vIndex: 3, symbol: ?getBiomeArea@FixedBiomeSource@@UEBA?AVBiomeArea@@AEBVBoundingBox@@I@Z
// vIndex: 3
virtual class BiomeArea getBiomeArea(class BoundingBox const& area, uint scale) const;

// vIndex: 4
Expand Down

0 comments on commit 9997ea5

Please sign in to comment.