Files
xahaud/src/ripple
seelabs 761bb5744e Make XRPAmount constructor explicit:
Remove the implicit conversion from int64 to XRPAmount. The motivation for this
was noticing that many calls to `to_string` with an integer parameter type were
calling the wrong `to_string` function. Since the calls were not prefixed with
`std::`, and there is no ADL to call `std::to_string`, this was converting the
int to an `XRPAmount` and calling `to_string(XRPAmount)`.

Since `to_string(XRPAmount)` did the same thing as `to_string(int)` this error
went undetected.
2020-01-08 16:10:25 -08:00
..
2020-01-08 16:10:25 -08:00
2019-01-18 12:13:21 -08:00
2020-01-08 18:44:01 -05:00
2020-01-08 18:44:01 -05:00
2020-01-08 18:44:01 -05:00
2020-01-01 18:12:55 -08:00
2019-11-27 16:58:56 -08:00
2020-01-08 16:10:25 -08:00
2019-11-27 16:58:56 -08:00
2020-01-08 18:44:01 -05:00
2018-03-02 07:37:15 -08:00

Ripple Source Guidelines

Each folder contains a single module following the newest style:

  • One class per header
  • As much implementation hidden as possible
  • All major interfaces are abstract
  • Every class is documented
  • Each module focuses on solving one problem