[#17600] char* -> const char*
Thanks to Sean Bartell (wtachi), was causing many many warnings which distracted from the real problems.
This commit is contained in:
@@ -364,7 +364,7 @@ PyObject* SCA_RandomActuator::_getattr(const STR_String& attr) {
|
||||
}
|
||||
|
||||
/* 1. setSeed */
|
||||
char SCA_RandomActuator::SetSeed_doc[] =
|
||||
const char SCA_RandomActuator::SetSeed_doc[] =
|
||||
"setSeed(seed)\n"
|
||||
"\t- seed: integer\n"
|
||||
"\tSet the initial seed of the generator. Equal seeds produce\n"
|
||||
@@ -381,7 +381,7 @@ PyObject* SCA_RandomActuator::PySetSeed(PyObject* self, PyObject* args, PyObject
|
||||
Py_Return;
|
||||
}
|
||||
/* 2. getSeed */
|
||||
char SCA_RandomActuator::GetSeed_doc[] =
|
||||
const char SCA_RandomActuator::GetSeed_doc[] =
|
||||
"getSeed()\n"
|
||||
"\tReturns the initial seed of the generator. Equal seeds produce\n"
|
||||
"\tequal series.\n";
|
||||
@@ -390,7 +390,7 @@ PyObject* SCA_RandomActuator::PyGetSeed(PyObject* self, PyObject* args, PyObject
|
||||
}
|
||||
|
||||
/* 4. getPara1 */
|
||||
char SCA_RandomActuator::GetPara1_doc[] =
|
||||
const char SCA_RandomActuator::GetPara1_doc[] =
|
||||
"getPara1()\n"
|
||||
"\tReturns the first parameter of the active distribution. Refer\n"
|
||||
"\tto the documentation of the generator types for the meaning\n"
|
||||
@@ -400,7 +400,7 @@ PyObject* SCA_RandomActuator::PyGetPara1(PyObject* self, PyObject* args, PyObjec
|
||||
}
|
||||
|
||||
/* 6. getPara2 */
|
||||
char SCA_RandomActuator::GetPara2_doc[] =
|
||||
const char SCA_RandomActuator::GetPara2_doc[] =
|
||||
"getPara2()\n"
|
||||
"\tReturns the first parameter of the active distribution. Refer\n"
|
||||
"\tto the documentation of the generator types for the meaning\n"
|
||||
@@ -410,7 +410,7 @@ PyObject* SCA_RandomActuator::PyGetPara2(PyObject* self, PyObject* args, PyObjec
|
||||
}
|
||||
|
||||
/* 8. getDistribution */
|
||||
char SCA_RandomActuator::GetDistribution_doc[] =
|
||||
const char SCA_RandomActuator::GetDistribution_doc[] =
|
||||
"getDistribution()\n"
|
||||
"\tReturns the type of the active distribution.\n";
|
||||
PyObject* SCA_RandomActuator::PyGetDistribution(PyObject* self, PyObject* args, PyObject* kwds) {
|
||||
@@ -418,7 +418,7 @@ PyObject* SCA_RandomActuator::PyGetDistribution(PyObject* self, PyObject* args,
|
||||
}
|
||||
|
||||
/* 9. setProperty */
|
||||
char SCA_RandomActuator::SetProperty_doc[] =
|
||||
const char SCA_RandomActuator::SetProperty_doc[] =
|
||||
"setProperty(name)\n"
|
||||
"\t- name: string\n"
|
||||
"\tSet the property to which the random value is assigned. If the \n"
|
||||
@@ -441,7 +441,7 @@ PyObject* SCA_RandomActuator::PySetProperty(PyObject* self, PyObject* args, PyOb
|
||||
Py_Return;
|
||||
}
|
||||
/* 10. getProperty */
|
||||
char SCA_RandomActuator::GetProperty_doc[] =
|
||||
const char SCA_RandomActuator::GetProperty_doc[] =
|
||||
"getProperty(name)\n"
|
||||
"\tReturn the property to which the random value is assigned. If the \n"
|
||||
"\tgenerator and property types do not match, the assignment is ignored.\n";
|
||||
@@ -450,7 +450,7 @@ PyObject* SCA_RandomActuator::PyGetProperty(PyObject* self, PyObject* args, PyOb
|
||||
}
|
||||
|
||||
/* 11. setBoolConst */
|
||||
char SCA_RandomActuator::SetBoolConst_doc[] =
|
||||
const char SCA_RandomActuator::SetBoolConst_doc[] =
|
||||
"setBoolConst(value)\n"
|
||||
"\t- value: 0 or 1\n"
|
||||
"\tSet this generator to produce a constant boolean value.\n";
|
||||
@@ -470,7 +470,7 @@ PyObject* SCA_RandomActuator::PySetBoolConst(PyObject* self,
|
||||
Py_Return;
|
||||
}
|
||||
/* 12. setBoolUniform, */
|
||||
char SCA_RandomActuator::SetBoolUniform_doc[] =
|
||||
const char SCA_RandomActuator::SetBoolUniform_doc[] =
|
||||
"setBoolUniform()\n"
|
||||
"\tSet this generator to produce true and false, each with 50%% chance of occuring\n";
|
||||
PyObject* SCA_RandomActuator::PySetBoolUniform(PyObject* self,
|
||||
@@ -482,7 +482,7 @@ PyObject* SCA_RandomActuator::PySetBoolUniform(PyObject* self,
|
||||
Py_Return;
|
||||
}
|
||||
/* 13. setBoolBernouilli, */
|
||||
char SCA_RandomActuator::SetBoolBernouilli_doc[] =
|
||||
const char SCA_RandomActuator::SetBoolBernouilli_doc[] =
|
||||
"setBoolBernouilli(value)\n"
|
||||
"\t- value: a float between 0 and 1\n"
|
||||
"\tReturn false value * 100%% of the time.\n";
|
||||
@@ -500,7 +500,7 @@ PyObject* SCA_RandomActuator::PySetBoolBernouilli(PyObject* self,
|
||||
Py_Return;
|
||||
}
|
||||
/* 14. setIntConst,*/
|
||||
char SCA_RandomActuator::SetIntConst_doc[] =
|
||||
const char SCA_RandomActuator::SetIntConst_doc[] =
|
||||
"setIntConst(value)\n"
|
||||
"\t- value: integer\n"
|
||||
"\tAlways return value\n";
|
||||
@@ -518,7 +518,7 @@ PyObject* SCA_RandomActuator::PySetIntConst(PyObject* self,
|
||||
Py_Return;
|
||||
}
|
||||
/* 15. setIntUniform,*/
|
||||
char SCA_RandomActuator::SetIntUniform_doc[] =
|
||||
const char SCA_RandomActuator::SetIntUniform_doc[] =
|
||||
"setIntUniform(lower_bound, upper_bound)\n"
|
||||
"\t- lower_bound: integer\n"
|
||||
"\t- upper_bound: integer\n"
|
||||
@@ -539,7 +539,7 @@ PyObject* SCA_RandomActuator::PySetIntUniform(PyObject* self,
|
||||
Py_Return;
|
||||
}
|
||||
/* 16. setIntPoisson, */
|
||||
char SCA_RandomActuator::SetIntPoisson_doc[] =
|
||||
const char SCA_RandomActuator::SetIntPoisson_doc[] =
|
||||
"setIntPoisson(value)\n"
|
||||
"\t- value: float\n"
|
||||
"\tReturn a Poisson-distributed number. This performs a series\n"
|
||||
@@ -559,7 +559,7 @@ PyObject* SCA_RandomActuator::PySetIntPoisson(PyObject* self,
|
||||
Py_Return;
|
||||
}
|
||||
/* 17. setFloatConst,*/
|
||||
char SCA_RandomActuator::SetFloatConst_doc[] =
|
||||
const char SCA_RandomActuator::SetFloatConst_doc[] =
|
||||
"setFloatConst(value)\n"
|
||||
"\t- value: float\n"
|
||||
"\tAlways return value\n";
|
||||
@@ -577,7 +577,7 @@ PyObject* SCA_RandomActuator::PySetFloatConst(PyObject* self,
|
||||
Py_Return;
|
||||
}
|
||||
/* 18. setFloatUniform, */
|
||||
char SCA_RandomActuator::SetFloatUniform_doc[] =
|
||||
const char SCA_RandomActuator::SetFloatUniform_doc[] =
|
||||
"setFloatUniform(lower_bound, upper_bound)\n"
|
||||
"\t- lower_bound: float\n"
|
||||
"\t- upper_bound: float\n"
|
||||
@@ -598,7 +598,7 @@ PyObject* SCA_RandomActuator::PySetFloatUniform(PyObject* self,
|
||||
Py_Return;
|
||||
}
|
||||
/* 19. setFloatNormal, */
|
||||
char SCA_RandomActuator::SetFloatNormal_doc[] =
|
||||
const char SCA_RandomActuator::SetFloatNormal_doc[] =
|
||||
"setFloatNormal(mean, standard_deviation)\n"
|
||||
"\t- mean: float\n"
|
||||
"\t- standard_deviation: float\n"
|
||||
@@ -619,7 +619,7 @@ PyObject* SCA_RandomActuator::PySetFloatNormal(PyObject* self,
|
||||
Py_Return;
|
||||
}
|
||||
/* 20. setFloatNegativeExponential, */
|
||||
char SCA_RandomActuator::SetFloatNegativeExponential_doc[] =
|
||||
const char SCA_RandomActuator::SetFloatNegativeExponential_doc[] =
|
||||
"setFloatNegativeExponential(half_life)\n"
|
||||
"\t- half_life: float\n"
|
||||
"\tReturn negative-exponentially distributed numbers. The half-life 'time'\n"
|
||||
|
||||
Reference in New Issue
Block a user