Add beast SConstruct and .travis.yml

This commit is contained in:
Vinnie Falco
2014-03-24 09:26:55 -07:00
parent cc6cd0bb8f
commit d64f5a387c
26 changed files with 305 additions and 201 deletions

View File

@@ -31,35 +31,35 @@ namespace IP {
bool is_loopback (AddressV6 const&)
{
// VFALCO TODO
bassertfalse;
assert(false);
return false;
}
bool is_unspecified (AddressV6 const&)
{
// VFALCO TODO
bassertfalse;
assert(false);
return false;
}
bool is_multicast (AddressV6 const&)
{
// VFALCO TODO
bassertfalse;
assert(false);
return false;
}
bool is_private (AddressV6 const&)
{
// VFALCO TODO
bassertfalse;
assert(false);
return false;
}
bool is_public (AddressV6 const&)
{
// VFALCO TODO
bassertfalse;
assert(false);
return false;
}
@@ -68,14 +68,14 @@ bool is_public (AddressV6 const&)
std::string to_string (AddressV6 const&)
{
// VFALCO TODO
bassertfalse;
assert(false);
return "";
}
std::istream& operator>> (std::istream& is, AddressV6&)
{
// VFALCO TODO
bassertfalse;
assert(false);
return is;
}