From caf746088b7d92def18f2b3d6ccb7dfd9860e64b Mon Sep 17 00:00:00 2001 From: Aditya Naik Date: Fri, 31 May 2024 14:15:38 -0700 Subject: 52 errors, removing implicit sourceinfo to clear more errors --- core/src/main/scala/chisel3/CompileOptions.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/src/main/scala/chisel3/CompileOptions.scala') diff --git a/core/src/main/scala/chisel3/CompileOptions.scala b/core/src/main/scala/chisel3/CompileOptions.scala index f74d8fff..cdc05392 100644 --- a/core/src/main/scala/chisel3/CompileOptions.scala +++ b/core/src/main/scala/chisel3/CompileOptions.scala @@ -63,7 +63,7 @@ object ExplicitCompileOptions { // Collection of "not strict" connection compile options. // These provide compatibility with existing code. - implicit val NotStrict = new CompileOptionsClass( + implicit val NotStrict: CompileOptionsClass = new CompileOptionsClass( connectFieldsMustMatch = false, declaredTypeMustBeUnbound = false, dontTryConnectionsSwapped = false, @@ -97,7 +97,7 @@ object ExplicitCompileOptions { } // Collection of "strict" connection compile options, preferred for new code. - implicit val Strict = new CompileOptionsClass( + implicit val Strict: CompileOptionsClass = new CompileOptionsClass( connectFieldsMustMatch = true, declaredTypeMustBeUnbound = true, dontTryConnectionsSwapped = true, -- cgit v1.2.3