Skip to content

Commit

Permalink
Validated code for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Taylor Shuler committed Jul 25, 2013
1 parent 27627ac commit 3791277
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cubico/Measurement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public struct Measurement : IEquatable<Measurement>, IComparable<Measurement>
UnitConverter _uc;
double _maxbound;
double _minbound;
double _standardValue;
public double _standardValue;
//Unit _standardUnit;
double _value;
Unit _unit;
Expand Down
2 changes: 1 addition & 1 deletion Cubico/UnitConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class UnitConverter
{
//TODO: Fix this; was Previously NaN
const double _failsafeValue = 0;
Dictionary<string, Unit> _SymbolDictionary;
public Dictionary<string, Unit> _SymbolDictionary;
Dictionary<string, Symbol> _IndividualSymbolDictionary;
Dictionary<string, Unit> _UnitDictionary;
Dictionary<string, UnitType> _UnitTypeDictionary;
Expand Down

0 comments on commit 3791277

Please sign in to comment.