Skip to content

Commit defa5fc

Browse files
committed
Sharing private functions instead with all forked classes
1 parent 67a9c41 commit defa5fc

2 files changed

Lines changed: 2 additions & 264 deletions

File tree

GlobalCode/AltNum/MediumDec.hpp

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,17 @@
2727

2828
class MediumDec;
2929

30-
//Bitwise based operation code likely mostly incorrect in calculations(not that is important for moment)
3130
//Operations and functions will mess up if IntValue overflows/underflows or reaches exactly -2147483648 which is used to represent negative zero when has decimal values
3231

33-
//Preprocessor Switches
34-
/*
35-
*/
36-
3732
/// <summary>
3833
/// Alternative Non-Integer number representation with focus on accuracy and partially speed within certain range
3934
/// Represents +- 2147483647.999999999 with 100% consistency of accuracy for most operations as long as don't get too small
40-
// Use MediumDec instead if want to use variant of this class that supports radical representation to save some extra precision
35+
// Use AltDec instead if want to use variant of this class that supports radical representation to save some extra precision
4136
/// (8 bytes worth of Variable Storage inside class for each instance)
4237
/// </summary>
4338
class DLL_API MediumDec
4439
{
45-
46-
private:
40+
protected:
4741
/// <summary>
4842
/// The decimal overflow
4943
/// </summary>

GlobalCode/AltNum/MediumDec_NonWorking.hpp

Lines changed: 0 additions & 256 deletions
This file was deleted.

0 commit comments

Comments
 (0)