Skip to content

Commit

Permalink
Merge pull request #150 from Federerer/bug/vst3_issue
Browse files Browse the repository at this point in the history
Fix for #149
  • Loading branch information
dsharlet authored May 10, 2022
2 parents 4693f6a + fdf3dea commit 9dd03c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Circuit/Utils/Quantity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public UnitCastException(Units From, Units To)
{ }
}

[TypeConverter(typeof(QuantityConverter))]
[TypeConverter("Circuit.QuantityConverter")]
public class Quantity : IEquatable<Quantity>, IFormattable
{
private Expression x = 0;
Expand Down
2 changes: 1 addition & 1 deletion Circuit/Utils/Ratio.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Circuit
{
[TypeConverter(typeof(RatioConverter))]
[TypeConverter("Circuit.RatioConverter")]
public class Ratio : IEquatable<Ratio>
{
private int n, d;
Expand Down

0 comments on commit 9dd03c0

Please sign in to comment.