Error Thrown Unknown Reason
#include "std_lib_facilities.h"
int main()
{
vector<char> shape = ('a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a');
return(0);
}
that one line with the vector throws this error that I've never seen before nor can figure out...
:: g++ TicTacToe.cpp -o TTT
TicTacToe.cpp: In function int main()':char' to non-scalar type `Vector' requested
TicTacToe.cpp:5: error: conversion from
See in each tic-tac-toe box it will start as _ and then go to either X or O, I'm doing this without a graphics library so its terminal graphics.