Configuration: Fix const and signedness compile warnings

Change-Id: I701559814b2aee6f84f10e612f128da40f6a51c1
This commit is contained in:
Tom Tsou 2017-04-03 18:54:02 -07:00
parent 6031734f44
commit 15da7e1f7e
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ static const char* createConfigTable = {
static std::string replaceAll(const std::string input, const std::string search, const std::string replace)
{
std::string output = input;
int index = 0;
size_t index = 0;
while (true) {
index = output.find(search, index);

View File

@ -47,7 +47,7 @@ int main(int argc, char *argv[])
gConfig.setUpdateHook(purgeConfig);
char *keys[5] = {"key1", "key2", "key3", "key4", "key5"};
const char *keys[5] = {"key1", "key2", "key3", "key4", "key5"};
for (int i=0; i<5; i++) {
gConfig.set(keys[i],i);