Which C++ standard am I using?

That only says that XTensa GCC / G++ version 5.2.0 is used, not the C++ version. You can always use the project tasks “Clean” followed by “Advanced → Verbose Build” to inspect all exact compiler invocations. Among it, it will have a -std=x switch with x being the language standard – no guesswork needed.

2 Likes