You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting this error (while trying to install a Python package that uses this project):
c:\users\tadas\appdata\local\temp\pip_build_tadas\hat-trie\src../hat-trie/src/hat-trie.h(27) : fatal error C1083: Cannot open include file: 'stdbool.h': No such file or directory
error: command '"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\Bin\amd64\cl.exe"' failed with exit status 2
The quick fix seems to be to replace stdbool with:
I am getting this error (while trying to install a Python package that uses this project):
c:\users\tadas\appdata\local\temp\pip_build_tadas\hat-trie\src../hat-trie/src/hat-trie.h(27) : fatal error C1083: Cannot open include file: 'stdbool.h': No such file or directory
error: command '"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\Bin\amd64\cl.exe"' failed with exit status 2
The quick fix seems to be to replace stdbool with:
typedef int bool;
define false 0
define true 1
http://stackoverflow.com/questions/8548521/trying-to-use-include-stdbool-h-in-vs-2010
The text was updated successfully, but these errors were encountered: