Message237951
| Author |
Joshua.J.Cogliati |
| Recipients |
Joshua.J.Cogliati, Vitor.de.Lima, gustavotemple, jrincayc, python-dev, vstinner |
| Date |
2015年03月12日.15:45:08 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1426175108.56.0.953910413577.issue23644@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
I have:
/local/python_fix/include/python3.5m/pyatomic.h
#ifndef Py_LIMITED_API
#ifndef Py_ATOMIC_H
#define Py_ATOMIC_H
#include "dynamic_annotations.h"
#include "pyconfig.h"
#ifdef __cplusplus
extern "C" {
#endif
#if defined(HAVE_STD_ATOMIC)
#include <stdatomic.h>
#endif
...
and still get:
In file included from /local/python_fix/include/python3.5m/pyatomic.h:14:0,
from /local/python_fix/include/python3.5m/Python.h:53,
from example_wrap.cxx:154:
/usr/include/c++/4.9.2/exception:161:34: error: missing binary operator before token "("
#if (__cplusplus >= 201103L) && (ATOMIC_INT_LOCK_FREE > 1)
So the bug still seems to be there. |
|