Solution for me was to remove one of my two string includes.
I had
#include <string.h>
and
#include "string.h"
didn’t notice it and it randomly decided to throw the ambiguous error because of it till I got rid of one.
Solution for me was to remove one of my two string includes.
I had
#include <string.h>
and
#include "string.h"
didn’t notice it and it randomly decided to throw the ambiguous error because of it till I got rid of one.