Skip to content

Commit

Permalink
Merge pull request #373 from KLayout/issue-372
Browse files Browse the repository at this point in the history
Fixed #372 (build issue with 64 bit coordinates)
  • Loading branch information
klayoutmatthias committed Oct 11, 2019
2 parents a072822 + 67526c7 commit 171bcd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pya/pya/pyaConvert.h
Expand Up @@ -142,7 +142,7 @@ struct test_type_func<__int128>
{
bool operator() (PyObject *rval, bool loose)
{
return test_type<int> (rval, loose);
return test_type_func<int> () (rval, loose);
}
};
#endif
Expand Down Expand Up @@ -582,7 +582,7 @@ struct c2python_func<unsigned long long>

#if defined(HAVE_64BIT_COORD)
template <>
struct c2python_func<const __int128 &>
struct c2python_func<__int128>
{
PyObject *operator() (const __int128 &c)
{
Expand Down

0 comments on commit 171bcd4

Please sign in to comment.