[polly] r297462 - Add method interface to isl C++ bindings

Michael Kruse via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 10 07:34:59 PST 2017


2017-03-10 15:53 GMT+01:00 Tobias Grosser via llvm-commits
<llvm-commits at lists.llvm.org>:
> +  inline basic_map fix_si(enum dim type, unsigned int pos, int value) const;

This fails with MSVC:

1>C:\Users\Meinersbur\src\llvm\tools\polly\lib\External\isl\include\isl-noexceptions.h(332):
error C3431: 'dim': a scoped enumeration cannot be redeclared as an
unscoped enumeration

This solves the problem:

inline basic_map fix_si(dim type, unsigned int pos, int value) const;


Michael


More information about the llvm-commits mailing list