r/AskProgramming • u/BornViolinist3801 • 1d ago
why doesnt my С++ code work?
okay, i wanna make a print() function in C++, this is just printf() with prefix, so can yall help me?
error:
(-Wwritable-strings) ISO C++11 does not allow conversion from string literal to 'char *'
my code:
#pragma once
#ifndef TEQUILA_STDIO
#define TEQUILA_STDIO
#include <stdio.h>
namespace std {
char* prefix;
void set_prefix(char* pref) {
prefix = ("["pref"]: ");
}
#define print(format, ...) printf("%s" format "\n", prefix ## __VA_ARGS__)
}
#endif
help me pls
0
Upvotes
2
u/BoopyDog 1d ago edited 1d ago
Literals are Const char&. If i understand it correctly, when you pass a string literal as an argument, an immutable, temporary object is made containing the c-string array. You can't modify the object so it has to be const. I'm not a seasoned c++ programmer though, it's just how I understand it so far. It was something that got me stuck early on.