Advertisement
Guest User

Untitled

a guest
Jan 26th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. # bubo at vajcak in ~/workspace/CR-index on ruby-2.1.2 on [branch]master x [13:28:14]
  2. $ make
  3. g++ -W -Wall -O3 -std=c++11 -w -o CR_example CR_example.cpp CR.cpp util.cpp fm_wrapper.cpp -lsdsl -ldivsufsort -ldivsufsort64 -lboost_filesystem -lboost_system
  4. CR.cpp: In constructor ‘CR::CR(std::string, int, bool)’:
  5. CR.cpp:8:32: error: no matching function for call to ‘FMWrapper::FMWrapper()’
  6. CR::CR(string p, int rl, bool v) {
  7. ^
  8. CR.cpp:8:32: note: candidates are:
  9. In file included from CR.hpp:16:0,
  10. from CR.cpp:1:
  11. fm_wrapper.hpp:15:9: note: FMWrapper::FMWrapper(std::string)
  12. FMWrapper(string data);
  13. ^
  14. fm_wrapper.hpp:15:9: note: candidate expects 1 argument, 0 provided
  15. fm_wrapper.hpp:13:7: note: FMWrapper::FMWrapper(const FMWrapper&)
  16. class FMWrapper {
  17. ^
  18. fm_wrapper.hpp:13:7: note: candidate expects 1 argument, 0 provided
  19. fm_wrapper.hpp:13:7: note: FMWrapper::FMWrapper(FMWrapper&&)
  20. fm_wrapper.hpp:13:7: note: candidate expects 1 argument, 0 provided
  21. CR.cpp: In constructor ‘CR::CR(std::string, std::vector<std::pair<int, int> >, int, bool)’:
  22. CR.cpp:21:68: error: no matching function for call to ‘FMWrapper::FMWrapper()’
  23. CR::CR(string superstring, vector<pair<int, int>> p, int rl, bool v) {
  24. ^
  25. CR.cpp:21:68: note: candidates are:
  26. In file included from CR.hpp:16:0,
  27. from CR.cpp:1:
  28. fm_wrapper.hpp:15:9: note: FMWrapper::FMWrapper(std::string)
  29. FMWrapper(string data);
  30. ^
  31. fm_wrapper.hpp:15:9: note: candidate expects 1 argument, 0 provided
  32. fm_wrapper.hpp:13:7: note: FMWrapper::FMWrapper(const FMWrapper&)
  33. class FMWrapper {
  34. ^
  35. fm_wrapper.hpp:13:7: note: candidate expects 1 argument, 0 provided
  36. fm_wrapper.hpp:13:7: note: FMWrapper::FMWrapper(FMWrapper&&)
  37. fm_wrapper.hpp:13:7: note: candidate expects 1 argument, 0 provided
  38. make: *** [default] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement