Compiled new deployment
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#include "Hazelnupp.h"
|
||||
|
||||
/*** ../Hazelnupp/CmdArgsInterface.cpp ***/
|
||||
/*** ./../Hazelnupp/CmdArgsInterface.cpp ***/
|
||||
|
||||
#include <iostream>
|
||||
#include <cstdlib>
|
||||
@@ -67,7 +67,7 @@ void CmdArgsInterface::Parse(const int argc, const char* const* argv)
|
||||
{
|
||||
std::cout << GenerateDocumentation() << std::endl << std::endl;
|
||||
std::cerr << "Parameter error: " << exc.What() << std::endl;
|
||||
quick_exit(-1000);
|
||||
exit(-1000);
|
||||
}
|
||||
else
|
||||
throw exc; // yeet
|
||||
@@ -78,7 +78,7 @@ void CmdArgsInterface::Parse(const int argc, const char* const* argv)
|
||||
{
|
||||
std::cout << GenerateDocumentation() << std::endl << std::endl;
|
||||
std::cerr << "Parameter error: " << exc.What() << std::endl;
|
||||
quick_exit(-1001);
|
||||
exit(-1001);
|
||||
}
|
||||
else
|
||||
throw exc; // yeet
|
||||
@@ -89,7 +89,7 @@ void CmdArgsInterface::Parse(const int argc, const char* const* argv)
|
||||
{
|
||||
std::cout << GenerateDocumentation() << std::endl << std::endl;
|
||||
std::cerr << "Parameter error: " << exc.What() << std::endl;
|
||||
quick_exit(-1002);
|
||||
exit(-1002);
|
||||
}
|
||||
else
|
||||
throw exc; // yeet
|
||||
@@ -100,7 +100,7 @@ void CmdArgsInterface::Parse(const int argc, const char* const* argv)
|
||||
{
|
||||
std::cout << GenerateDocumentation() << std::endl << std::endl;
|
||||
std::cerr << "Parameter error: " << exc.What() << std::endl;
|
||||
quick_exit(-1003);
|
||||
exit(-1003);
|
||||
}
|
||||
else
|
||||
throw exc; // yeet
|
||||
@@ -111,7 +111,7 @@ void CmdArgsInterface::Parse(const int argc, const char* const* argv)
|
||||
{
|
||||
std::cout << GenerateDocumentation() << std::endl << std::endl;
|
||||
std::cerr << "Parameter error: " << exc.What() << std::endl;
|
||||
quick_exit(-1004);
|
||||
exit(-1004);
|
||||
}
|
||||
else
|
||||
throw exc; // yeet
|
||||
@@ -121,7 +121,7 @@ void CmdArgsInterface::Parse(const int argc, const char* const* argv)
|
||||
if ((catchHelp) && (HasParam("--help")))
|
||||
{
|
||||
std::cout << GenerateDocumentation() << std::endl;
|
||||
quick_exit(0);
|
||||
exit(0);
|
||||
}
|
||||
|
||||
return;
|
||||
@@ -589,7 +589,7 @@ void CmdArgsInterface::ApplyConstraints()
|
||||
|
||||
// Is ANY parameter present listed as incompatible with our current one?
|
||||
for (const std::string& incompatibility : pc.second.incompatibleParameters)
|
||||
for (const std::pair<std::string, Parameter*>& otherParam : parameters)
|
||||
for (const auto& otherParam : parameters)
|
||||
{
|
||||
if (otherParam.first == incompatibility)
|
||||
throw HazelnuppConstraintIncompatibleParameters(pc.second.key, incompatibility);
|
||||
@@ -685,7 +685,7 @@ const ParamConstraint* CmdArgsInterface::GetConstraintForKey(const std::string&
|
||||
}
|
||||
|
||||
|
||||
/*** ../Hazelnupp/FloatValue.cpp ***/
|
||||
/*** ./../Hazelnupp/FloatValue.cpp ***/
|
||||
|
||||
#include <sstream>
|
||||
|
||||
@@ -762,7 +762,7 @@ const std::vector<Value*>& FloatValue::GetList() const
|
||||
}
|
||||
|
||||
|
||||
/*** ../Hazelnupp/IntValue.cpp ***/
|
||||
/*** ./../Hazelnupp/IntValue.cpp ***/
|
||||
|
||||
#include <sstream>
|
||||
|
||||
@@ -839,7 +839,7 @@ const std::vector<Value*>& IntValue::GetList() const
|
||||
}
|
||||
|
||||
|
||||
/*** ../Hazelnupp/ListValue.cpp ***/
|
||||
/*** ./../Hazelnupp/ListValue.cpp ***/
|
||||
|
||||
#include <sstream>
|
||||
|
||||
@@ -938,7 +938,7 @@ const std::vector<Value*>& ListValue::GetList() const
|
||||
}
|
||||
|
||||
|
||||
/*** ../Hazelnupp/Parameter.cpp ***/
|
||||
/*** ./../Hazelnupp/Parameter.cpp ***/
|
||||
|
||||
|
||||
using namespace Hazelnp;
|
||||
@@ -970,7 +970,7 @@ const ::Value* Parameter::GetValue() const
|
||||
}
|
||||
|
||||
|
||||
/*** ../Hazelnupp/StringTools.cpp ***/
|
||||
/*** ./../Hazelnupp/StringTools.cpp ***/
|
||||
|
||||
|
||||
using namespace Hazelnp;
|
||||
@@ -1159,7 +1159,7 @@ std::string Internal::StringTools::ToLower(const std::string& str)
|
||||
}
|
||||
|
||||
|
||||
/*** ../Hazelnupp/StringValue.cpp ***/
|
||||
/*** ./../Hazelnupp/StringValue.cpp ***/
|
||||
|
||||
#include <sstream>
|
||||
|
||||
@@ -1228,7 +1228,7 @@ const std::vector<Value*>& StringValue::GetList() const
|
||||
}
|
||||
|
||||
|
||||
/*** ../Hazelnupp/Value.cpp ***/
|
||||
/*** ./../Hazelnupp/Value.cpp ***/
|
||||
|
||||
|
||||
using namespace Hazelnp;
|
||||
@@ -1246,7 +1246,7 @@ DATA_TYPE Value::GetDataType() const
|
||||
}
|
||||
|
||||
|
||||
/*** ../Hazelnupp/VoidValue.cpp ***/
|
||||
/*** ./../Hazelnupp/VoidValue.cpp ***/
|
||||
|
||||
|
||||
using namespace Hazelnp;
|
||||
|
||||
Reference in New Issue
Block a user