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

Commit

Permalink
chore: remove bad path
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN committed Oct 9, 2024
1 parent 768b0d5 commit 5f155c5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions assets/predefine.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@

#include "entt/entt.hpp" // Entity Component System Library
#include "entt/fwd.hpp" // Entity Component Forward Declarations
#include "glm/glm.hpp" // OpenGL Mathematics Library
#include "gsl/gsl" // Guideline Support Library

// LevelDB C++ Library
Expand Down
3 changes: 0 additions & 3 deletions src/main/kotlin/com/liteldev/headeroutput/entity/BaseType.kt
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ abstract class BaseType(
?.let {
return@run "$root/${it.dst}/${this.simpleName}.$HEADER_SUFFIX"
}
if (this.parents.isNotEmpty()) {
return@run "${this.parents[0].path.substringBeforeLast("/", ".")}/${this.simpleName}.$HEADER_SUFFIX"
}
}
regexRules.filter { !it.override }.find { this.name.matches(it.regex.toRegex()) }?.let {
return@run "$root/${it.dst}/${this.simpleName}.$HEADER_SUFFIX"
Expand Down

0 comments on commit 5f155c5

Please sign in to comment.