diff options
| author | Jack Koenig | 2020-09-09 13:49:18 -0700 |
|---|---|---|
| committer | GitHub | 2020-09-09 20:49:18 +0000 |
| commit | a70f0ceb443da270aad31f5ed478e95df7962849 (patch) | |
| tree | e80b2739d7c8d7b585273df9c7605fbcfca36d48 /src/main | |
| parent | bc7ac7013ecdf956b7cd61f0f0a60c7272d49cd6 (diff) | |
Make StageOption Unserializable (#1891)
These options are generally specific to a stage and thus should not be
propagating across serialization
Diffstat (limited to 'src/main')
| -rw-r--r-- | src/main/scala/firrtl/options/StageAnnotations.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/firrtl/options/StageAnnotations.scala b/src/main/scala/firrtl/options/StageAnnotations.scala index 84168975..e2835e16 100644 --- a/src/main/scala/firrtl/options/StageAnnotations.scala +++ b/src/main/scala/firrtl/options/StageAnnotations.scala @@ -10,7 +10,7 @@ import java.io.File import scopt.OptionParser -sealed trait StageOption { this: Annotation => } +sealed trait StageOption extends Unserializable { this: Annotation => } /** An annotation that should not be serialized automatically [[phases.WriteOutputAnnotations WriteOutputAnnotations]]. * This usually means that this is an annotation that is used only internally to a [[Stage]]. |
