Reorganize all includes in ripple_main.cpp

This commit is contained in:
Vinnie Falco
2013-06-03 17:38:28 -07:00
parent 34cb5c6569
commit 045c3cc01f
20 changed files with 503 additions and 535 deletions

View File

@@ -94,6 +94,7 @@ template<typename T> T range_check_max(const T& value, const T& maximum)
}
*/
// VFALCO: TODO, these parameters should not be const references.
template<typename T, typename U> T range_check_cast(const U& value, const T& minimum, const T& maximum)
{
if ((value < minimum) || (value > maximum))