diff options
Diffstat (limited to 'lib/compilers/avrgcc6502.ts')
-rw-r--r-- | lib/compilers/avrgcc6502.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compilers/avrgcc6502.ts b/lib/compilers/avrgcc6502.ts index 53895f93d..422348288 100644 --- a/lib/compilers/avrgcc6502.ts +++ b/lib/compilers/avrgcc6502.ts @@ -38,9 +38,9 @@ export class AvrGcc6502Compiler extends BaseCompiler { constructor(compilerInfo, env) { super(compilerInfo, env); - this.avrgccpath = this.compilerProps(`compiler.${this.compiler.id}.avrgccpath`); - this.xapath = this.compilerProps(`compiler.${this.compiler.id}.xapath`); - this.avrlibstdcpppath = this.compilerProps(`compiler.${this.compiler.id}.avrlibstdcpppath`); + this.avrgccpath = this.compilerProps<string>(`compiler.${this.compiler.id}.avrgccpath`); + this.xapath = this.compilerProps<string>(`compiler.${this.compiler.id}.xapath`); + this.avrlibstdcpppath = this.compilerProps<string>(`compiler.${this.compiler.id}.avrlibstdcpppath`); this.outputFilebase = 'example'; } |