When building libc++ with clang-cl, the duplicated annotation of these methods would cause an error.
cannot apply 'dllexport' to a 'dllexport' class
Since the class is already marked with the appropriate attribute, the function should inherit the visibility/DLL storage. Remove the secondary annotation.