Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
refactor: remove explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN committed Apr 4, 2024
1 parent 44baee2 commit b7d6d1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ gradle-app.setting
# vscode
.vscode

bin

# HeaderOutput files
/header/
/originalData*.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,6 @@ data class MemberTypeData(
else append("MCAPI ")

if (!(isPtrCall() || isVirtual() || namespace)) append("static ")
if ((isConstructor() && !isCopyConstructor() && !isMoveConstructor() && params.size == 1) || isConversionOperator())
append("explicit ")
if (isFunctionPtr) append("auto ")
else if (valType.name != "") append("${valType.name} ")
append("$name(${paramsString})")
Expand Down

0 comments on commit b7d6d1c

Please sign in to comment.