Don't manually inline

This commit is contained in:
mo8it
2026-04-05 17:29:24 +02:00
parent c466d01da9
commit 95b6160b54
9 changed files with 0 additions and 41 deletions
-5
View File
@@ -23,7 +23,6 @@ pub struct ExerciseInfo {
#[serde(default)]
pub skip_check_unsolved: bool,
}
#[inline]
const fn default_true() -> bool {
true
}
@@ -55,22 +54,18 @@ impl ExerciseInfo {
}
impl RunnableExercise for ExerciseInfo {
#[inline]
fn name(&self) -> &str {
self.name
}
#[inline]
fn dir(&self) -> Option<&str> {
self.dir
}
#[inline]
fn strict_clippy(&self) -> bool {
self.strict_clippy
}
#[inline]
fn test(&self) -> bool {
self.test
}