I have a C++11 header and source file to call from swift (of course i'm including the header in the bridging header). I've set the build settings for C++ to:
"C++ Language Dialect" -> "C++11 [-std=c++11]"
"C++ Standard Library" -> "libc++ (LLVM standard C++ library with C++11 support)"
It still can't find some #include (file not found):
#include <map>
#include <memory>
#include <set>
#include <string>
#include <vector>
#include <utility>
#include <cassert>
#include <iostream>
#include <algorithm>
#include <utility>