Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build fails on Arch linux #7

Open
zxcsvb opened this issue Dec 3, 2020 · 2 comments
Open

Build fails on Arch linux #7

zxcsvb opened this issue Dec 3, 2020 · 2 comments

Comments

@zxcsvb
Copy link

zxcsvb commented Dec 3, 2020

Attempting to build from the AUR on with arch yeilds:

loadfile.cpp: In function ‘void loadfile(const char*)’:
loadfile.cpp:334:22: error: no match for ‘operator=’ (operand types are ‘std::unique_ptr<GlobalParams>’ and ‘GlobalParams*’)
  334 |   globalParams = new GlobalParams;
      |                      ^~~~~~~~~~~~
In file included from /usr/include/c++/10.2.0/memory:83,
                 from /usr/include/poppler/PopplerCache.h:18,
                 from /usr/include/poppler/XRef.h:40,
                 from /usr/include/poppler/PDFDoc.h:50,
                 from main.h:41,
                 from loadfile.cpp:17:
/usr/include/c++/10.2.0/bits/unique_ptr.h:371:19: note: candidate: ‘std::unique_ptr<_Tp, _Dp>& std::unique_ptr<_Tp, _Dp>::operator=(std::unique_ptr<_Tp, _Dp>&&) [with _Tp = GlobalParams; _Dp = std::default_delete<GlobalParams>]’
  371 |       unique_ptr& operator=(unique_ptr&&) = default;
      |                   ^~~~~~~~
/usr/include/c++/10.2.0/bits/unique_ptr.h:371:29: note:   no known conversion for argument 1 from ‘GlobalParams*’ to ‘std::unique_ptr<GlobalParams>&&’
  371 |       unique_ptr& operator=(unique_ptr&&) = default;
      |                             ^~~~~~~~~~~~
/usr/include/c++/10.2.0/bits/unique_ptr.h:386:2: note: candidate: ‘template<class _Up, class _Ep> typename std::enable_if<std::__and_<std::__and_<std::is_convertible<typename std::unique_ptr<_Up, _Ep>::pointer, typename std::__uniq_ptr_impl<_Tp, _Dp>::pointer>, std::__not_<std::is_array<_Up> > >, std::is_assignable<_T2&, _U2&&> >::value, std::unique_ptr<_Tp, _Dp>&>::type std::unique_ptr<_Tp, _Dp>::operator=(std::unique_ptr<_Up, _Ep>&&) [with _Up = _Up; _Ep = _Ep; _Tp = GlobalParams; _Dp = std::default_delete<GlobalParams>]’
  386 |  operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
      |  ^~~~~~~~
/usr/include/c++/10.2.0/bits/unique_ptr.h:386:2: note:   template argument deduction/substitution failed:
loadfile.cpp:334:22: note:   mismatched types ‘std::unique_ptr<_Tp, _Dp>’ and ‘GlobalParams*’
  334 |   globalParams = new GlobalParams;
      |                      ^~~~~~~~~~~~
In file included from /usr/include/c++/10.2.0/memory:83,
                 from /usr/include/poppler/PopplerCache.h:18,
                 from /usr/include/poppler/XRef.h:40,
                 from /usr/include/poppler/PDFDoc.h:50,
                 from main.h:41,
                 from loadfile.cpp:17:
/usr/include/c++/10.2.0/bits/unique_ptr.h:395:7: note: candidate: ‘std::unique_ptr<_Tp, _Dp>& std::unique_ptr<_Tp, _Dp>::operator=(std::nullptr_t) [with _Tp = GlobalParams; _Dp = std::default_delete<GlobalParams>; std::nullptr_t = std::nullptr_t]’
  395 |       operator=(nullptr_t) noexcept
      |       ^~~~~~~~
/usr/include/c++/10.2.0/bits/unique_ptr.h:395:17: note:   no known conversion for argument 1 from ‘GlobalParams*’ to ‘std::nullptr_t’
  395 |       operator=(nullptr_t) noexcept
      |                 ^~~~~~~~~
make[2]: *** [Makefile:438: loadfile.o] Error 1```
@clbr
Copy link
Owner

clbr commented Dec 4, 2020

Looks like Poppler broke the API again. Try an older Poppler.

I probably won't look into this until it breaks for whatever version I have. Patches welcome.

@uivil
Copy link

uivil commented Jul 23, 2021

globalParams = new GlobalParams; -> globalParams = std::make_unique<GlobalParams>();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants