Closed yageek closed 5 years ago
Using the "amalgamate" inside a c++ project triggers the following warning for every ti_indicator_info declared in the file:
ti_indicator_info
warning: conversion from string literal to 'char *' is deprecated [-Wc++11-compat-deprecated-writable-strings]
Declaring the string as const char* instead of char* fixes the warnings.
const char*
char*
Is closed this PR to make a new one on the 0.9 branch
Using the "amalgamate" inside a c++ project triggers the following warning for every
ti_indicator_info
declared in the file:Declaring the string as
const char*
instead ofchar*
fixes the warnings.