mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-24 11:11:02 -07:00
Update for newer C++.
This commit is contained in:
@@ -295,7 +295,7 @@ namespace doj
|
|||||||
implement "std::ostream operator<< (std::ostream&, const Ty&)".
|
implement "std::ostream operator<< (std::ostream&, const Ty&)".
|
||||||
*/
|
*/
|
||||||
template<class Ty>
|
template<class Ty>
|
||||||
struct alphanum_less : public std::binary_function<Ty, Ty, bool>
|
struct alphanum_less
|
||||||
{
|
{
|
||||||
bool operator()(const Ty& left, const Ty& right) const
|
bool operator()(const Ty& left, const Ty& right) const
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
from build.c import clibrary
|
||||||
|
|
||||||
|
clibrary(
|
||||||
|
name="alphanum",
|
||||||
|
srcs=[],
|
||||||
|
hdrs={"dep/alphanum/alphanum.h": "./alphanum.h"},
|
||||||
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user