Advertisement
Guest User

Untitled

a guest
Mar 12th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Arduino 20.67 KB | None | 0 0
  1. Arduino: 1.8.8 (Windows 10), Board: "WAVGAT UNO R3"
  2.  
  3. Warning: platform.txt from core 'Arduino AVR Boards' contains deprecated recipe.ar.pattern="{compiler.path}{compiler.ar.cmd}" {compiler.ar.flags} {compiler.ar.extra_flags} "{build.path}/{archive_file}" "{object_file}", automatically converted to recipe.ar.pattern="{compiler.path}{compiler.ar.cmd}" {compiler.ar.flags} {compiler.ar.extra_flags} "{archive_file_path}" "{object_file}". Consider upgrading this core.
  4. Blink:60:48: error: template argument 1 is invalid
  5.  
  6.  template< class T > struct remove_reference<T&&> {typedef T type;};
  7.  
  8.                                                 ^
  9.  
  10. Blink:63:35: error: expected unqualified-id before '&&' token
  11.  
  12.  typename remove_reference<T>::type&& move(T&& a) {
  13.  
  14.                                    ^
  15.  
  16. Blink:157:22: error: expected ',' or '...' before '&&' token
  17.  
  18.      Iterator(Iterator&& it)
  19.  
  20.                       ^
  21.  
  22. Blink:157:27: error: invalid constructor; you probably meant 'xod::Iterator<T> (const xod::Iterator<T>&)'
  23.  
  24.      Iterator(Iterator&& it)
  25.  
  26.                            ^
  27.  
  28. Blink:163:33: error: expected ',' or '...' before '&&' token
  29.  
  30.      Iterator& operator=(Iterator&& it) {
  31.  
  32.                                  ^
  33.  
  34. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino: In member function 'xod::Iterator<T>& xod::Iterator<T>::operator=(xod::Iterator<T>)':
  35.  
  36. Blink:164:14: error: 'tmp' does not name a type
  37.  
  38.          auto tmp = it._cursor;
  39.  
  40.               ^
  41.  
  42. Blink:165:9: error: 'it' was not declared in this scope
  43.  
  44.          it._cursor = _cursor;
  45.  
  46.          ^
  47.  
  48. Blink:166:19: error: 'tmp' was not declared in this scope
  49.  
  50.          _cursor = tmp;
  51.  
  52.                    ^
  53.  
  54. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino: At global scope:
  55.  
  56. Blink:216:5: error: 'constexpr' does not name a type
  57.  
  58.      constexpr List()
  59.  
  60.      ^
  61.  
  62. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino:216:5: note: C++11 'constexpr' only available with -std=c++11 or -std=gnu++11
  63.  
  64. Blink:316:35: error: 'nullptr' was not declared in this scope
  65.  
  66.      CStringView(const char* str = nullptr)
  67.  
  68.                                    ^
  69.  
  70. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino: In member function 'virtual xod::Iterator<char> xod::CStringView::iterate() const':
  71.  
  72. Blink:326:78: error: use of deleted function 'xod::Iterator<T>::Iterator(const xod::Iterator<T>&) [with T = char]'
  73.  
  74.          return _str ? Iterator<char>(new Cursor(_str)) : Iterator<char>::nil();
  75.  
  76.                                                                               ^
  77.  
  78. Blink:154:5: error: declared here
  79.  
  80.      Iterator(const Iterator& that) = delete;
  81.  
  82.      ^
  83.  
  84. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino: At global scope:
  85.  
  86. Blink:344:27: error: expected ',' or '...' before '&&' token
  87.  
  88.          Cursor(Iterator<T>&& left, Iterator<T>&& right)
  89.  
  90.                            ^
  91.  
  92. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino: In constructor 'xod::ConcatListView<T>::Cursor::Cursor(xod::Iterator<T>)':
  93.  
  94. Blink:345:21: error: 'move' is not a member of 'xod::std'
  95.  
  96.              : _left(std::move(left))
  97.  
  98.                      ^
  99.  
  100. Blink:345:31: error: 'left' was not declared in this scope
  101.  
  102.              : _left(std::move(left))
  103.  
  104.                                ^
  105.  
  106. Blink:346:22: error: 'move' is not a member of 'xod::std'
  107.  
  108.              , _right(std::move(right))
  109.  
  110.                       ^
  111.  
  112. Blink:346:32: error: 'right' was not declared in this scope
  113.  
  114.              , _right(std::move(right))
  115.  
  116.                                 ^
  117.  
  118. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino: At global scope:
  119.  
  120. Blink:394:7: error: expected nested-name-specifier before 'XString'
  121.  
  122.  using XString = List<char>;
  123.  
  124.        ^
  125.  
  126. Blink:394:7: error: 'XString' has not been declared
  127.  
  128. Blink:394:15: error: expected ';' before '=' token
  129.  
  130.  using XString = List<char>;
  131.  
  132.                ^
  133.  
  134. Blink:394:15: error: expected unqualified-id before '=' token
  135.  
  136. Blink:400:39: error: expected class-name before '{' token
  137.  
  138.  class XStringCString : public XString {
  139.  
  140.                                        ^
  141.  
  142. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino: In constructor 'xod::XStringCString::XStringCString(const char*)':
  143.  
  144. Blink:403:11: error: class 'xod::XStringCString' does not have any field named 'XString'
  145.  
  146.          : XString(&_view)
  147.  
  148.            ^
  149.  
  150. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino: In member function 'virtual SoftwareSerial* xod::Uart::toSoftwareSerial()':
  151.  
  152. Blink:467:14: error: 'nullptr' was not declared in this scope
  153.  
  154.        return nullptr;
  155.  
  156.               ^
  157.  
  158. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino: In member function 'virtual HardwareSerial* xod::Uart::toHardwareSerial()':
  159.  
  160. Blink:471:14: error: 'nullptr' was not declared in this scope
  161.  
  162.        return nullptr;
  163.  
  164.               ^
  165.  
  166. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino: In function 'TR xod::foldl(xod::List<T>, TR (*)(TR, T), TR)':
  167.  
  168. Blink:560:15: error: 'it' does not name a type
  169.  
  170.      for (auto it = xs.iterate(); it; ++it)
  171.  
  172.                ^
  173.  
  174. Blink:560:34: error: expected ';' before 'it'
  175.  
  176.      for (auto it = xs.iterate(); it; ++it)
  177.  
  178.                                   ^
  179.  
  180. Blink:560:34: error: 'it' was not declared in this scope
  181.  
  182. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino: In function 'bool xod::equal(xod::List<T>, xod::List<T>)':
  183.  
  184. Blink:595:10: error: 'lhsIt' does not name a type
  185.  
  186.      auto lhsIt = lhs.iterate();
  187.  
  188.           ^
  189.  
  190. Blink:596:10: error: 'rhsIt' does not name a type
  191.  
  192.      auto rhsIt = rhs.iterate();
  193.  
  194.           ^
  195.  
  196. Blink:598:12: error: 'lhsIt' was not declared in this scope
  197.  
  198.      for (; lhsIt && rhsIt; ++lhsIt, ++rhsIt) {
  199.  
  200.             ^
  201.  
  202. Blink:598:21: error: 'rhsIt' was not declared in this scope
  203.  
  204.      for (; lhsIt && rhsIt; ++lhsIt, ++rhsIt) {
  205.  
  206.                      ^
  207.  
  208. Blink:602:13: error: 'lhsIt' was not declared in this scope
  209.  
  210.      return !lhsIt && !rhsIt;
  211.  
  212.              ^
  213.  
  214. Blink:602:23: error: 'rhsIt' was not declared in this scope
  215.  
  216.      return !lhsIt && !rhsIt;
  217.  
  218.                        ^
  219.  
  220. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino: At global scope:
  221.  
  222. Blink:972:50: error: expected nested-name-specifier before 'T'
  223.  
  224.  template<typename PinT> struct ValueType { using T = void; };
  225.  
  226.                                                   ^
  227.  
  228. Blink:972:50: error: using-declaration for non-member at class scope
  229.  
  230. Blink:972:52: error: expected ';' before '=' token
  231.  
  232.  template<typename PinT> struct ValueType { using T = void; };
  233.  
  234.                                                     ^
  235.  
  236. Blink:972:52: error: expected unqualified-id before '=' token
  237.  
  238. Blink:973:48: error: expected nested-name-specifier before 'T'
  239.  
  240.  template<> struct ValueType<input_IN1> { using T = Logic; };
  241.  
  242.                                                 ^
  243.  
  244. Blink:973:48: error: using-declaration for non-member at class scope
  245.  
  246. Blink:973:50: error: expected ';' before '=' token
  247.  
  248.  template<> struct ValueType<input_IN1> { using T = Logic; };
  249.  
  250.                                                   ^
  251.  
  252. Blink:973:50: error: expected unqualified-id before '=' token
  253.  
  254. Blink:974:48: error: expected nested-name-specifier before 'T'
  255.  
  256.  template<> struct ValueType<input_IN2> { using T = Logic; };
  257.  
  258.                                                 ^
  259.  
  260. Blink:974:48: error: using-declaration for non-member at class scope
  261.  
  262. Blink:974:50: error: expected ';' before '=' token
  263.  
  264.  template<> struct ValueType<input_IN2> { using T = Logic; };
  265.  
  266.                                                   ^
  267.  
  268. Blink:974:50: error: expected unqualified-id before '=' token
  269.  
  270. Blink:975:49: error: expected nested-name-specifier before 'T'
  271.  
  272.  template<> struct ValueType<output_OUT> { using T = Logic; };
  273.  
  274.                                                  ^
  275.  
  276. Blink:975:49: error: using-declaration for non-member at class scope
  277.  
  278. Blink:975:51: error: expected ';' before '=' token
  279.  
  280.  template<> struct ValueType<output_OUT> { using T = Logic; };
  281.  
  282.                                                    ^
  283.  
  284. Blink:975:51: error: expected unqualified-id before '=' token
  285.  
  286. Blink:987:7: error: expected nested-name-specifier before 'Context'
  287.  
  288.  using Context = ContextObject*;
  289.  
  290.        ^
  291.  
  292. Blink:987:7: error: 'Context' has not been declared
  293.  
  294. Blink:987:15: error: expected ';' before '=' token
  295.  
  296.  using Context = ContextObject*;
  297.  
  298.                ^
  299.  
  300. Blink:987:15: error: expected unqualified-id before '=' token
  301.  
  302. Blink:989:62: error: template declaration of 'typename xod::xod__core__any::ValueType<PinT>::T xod::xod__core__any::getValue'
  303.  
  304.  template<typename PinT> typename ValueType<PinT>::T getValue(Context ctx) {
  305.  
  306.                                                               ^
  307.  
  308. Blink:989:62: error: 'Context' was not declared in this scope
  309.  
  310. Blink:996:26: error: expected initializer before '<' token
  311.  
  312.  template<> Logic getValue<input_IN1>(Context ctx) {
  313.  
  314.                           ^
  315.  
  316. Blink:999:26: error: expected initializer before '<' token
  317.  
  318.  template<> Logic getValue<input_IN2>(Context ctx) {
  319.  
  320.                           ^
  321.  
  322. Blink:1002:26: error: expected initializer before '<' token
  323.  
  324.  template<> Logic getValue<output_OUT>(Context ctx) {
  325.  
  326.                           ^
  327.  
  328. Blink:1006:45: error: template declaration of 'bool xod::xod__core__any::isInputDirty'
  329.  
  330.  template<typename InputT> bool isInputDirty(Context ctx) {
  331.  
  332.                                              ^
  333.  
  334. Blink:1006:45: error: 'Context' was not declared in this scope
  335.  
  336. Blink:1013:29: error: expected initializer before '<' token
  337.  
  338.  template<> bool isInputDirty<input_IN1>(Context ctx) {
  339.  
  340.                              ^
  341.  
  342. Blink:1016:29: error: expected initializer before '<' token
  343.  
  344.  template<> bool isInputDirty<input_IN2>(Context ctx) {
  345.  
  346.                              ^
  347.  
  348. Blink:1020:43: error: variable or field 'emitValue' declared void
  349.  
  350.  template<typename OutputT> void emitValue(Context ctx, typename ValueType<OutputT>::T val) {
  351.  
  352.                                            ^
  353.  
  354. Blink:1020:43: error: 'Context' was not declared in this scope
  355.  
  356. Blink:1020:87: error: expected '(' before 'val'
  357.  
  358.  template<typename OutputT> void emitValue(Context ctx, typename ValueType<OutputT>::T val) {
  359.  
  360.                                                                                        ^
  361.  
  362. Blink:1026:26: error: expected initializer before '<' token
  363.  
  364.  template<> void emitValue<output_OUT>(Context ctx, Logic val) {
  365.  
  366.                           ^
  367.  
  368. Blink:1031:17: error: 'Context' was not declared in this scope
  369.  
  370.  State* getState(Context ctx) {
  371.  
  372.                  ^
  373.  
  374. Blink:1031:30: error: expected ',' or ';' before '{' token
  375.  
  376.  State* getState(Context ctx) {
  377.  
  378.                               ^
  379.  
  380. Blink:1035:15: error: variable or field 'evaluate' declared void
  381.  
  382.  void evaluate(Context ctx) {
  383.  
  384.                ^
  385.  
  386. Blink:1035:15: error: 'Context' was not declared in this scope
  387.  
  388. Blink:1069:50: error: expected nested-name-specifier before 'T'
  389.  
  390.  template<typename PinT> struct ValueType { using T = void; };
  391.  
  392.                                                   ^
  393.  
  394. Blink:1069:50: error: using-declaration for non-member at class scope
  395.  
  396. Blink:1069:52: error: expected ';' before '=' token
  397.  
  398.  template<typename PinT> struct ValueType { using T = void; };
  399.  
  400.                                                     ^
  401.  
  402. Blink:1069:52: error: expected unqualified-id before '=' token
  403.  
  404. Blink:1070:50: error: expected nested-name-specifier before 'T'
  405.  
  406.  template<> struct ValueType<output_TICK> { using T = Logic; };
  407.  
  408.                                                   ^
  409.  
  410. Blink:1070:50: error: using-declaration for non-member at class scope
  411.  
  412. Blink:1070:52: error: expected ';' before '=' token
  413.  
  414.  template<> struct ValueType<output_TICK> { using T = Logic; };
  415.  
  416.                                                     ^
  417.  
  418. Blink:1070:52: error: expected unqualified-id before '=' token
  419.  
  420. Blink:1077:7: error: expected nested-name-specifier before 'Context'
  421.  
  422.  using Context = ContextObject*;
  423.  
  424.        ^
  425.  
  426. Blink:1077:7: error: 'Context' has not been declared
  427.  
  428. Blink:1077:15: error: expected ';' before '=' token
  429.  
  430.  using Context = ContextObject*;
  431.  
  432.                ^
  433.  
  434. Blink:1077:15: error: expected unqualified-id before '=' token
  435.  
  436. Blink:1079:62: error: template declaration of 'typename xod::xod__core__continuously::ValueType<PinT>::T xod::xod__core__continuously::getValue'
  437.  
  438.  template<typename PinT> typename ValueType<PinT>::T getValue(Context ctx) {
  439.  
  440.                                                               ^
  441.  
  442. Blink:1079:62: error: 'Context' was not declared in this scope
  443.  
  444. Blink:1086:26: error: expected initializer before '<' token
  445.  
  446.  template<> Logic getValue<output_TICK>(Context ctx) {
  447.  
  448.                           ^
  449.  
  450. Blink:1090:45: error: template declaration of 'bool xod::xod__core__continuously::isInputDirty'
  451.  
  452.  template<typename InputT> bool isInputDirty(Context ctx) {
  453.  
  454.                                              ^
  455.  
  456. Blink:1090:45: error: 'Context' was not declared in this scope
  457.  
  458. Blink:1097:43: error: variable or field 'emitValue' declared void
  459.  
  460.  template<typename OutputT> void emitValue(Context ctx, typename ValueType<OutputT>::T val) {
  461.  
  462.                                            ^
  463.  
  464. Blink:1097:43: error: 'Context' was not declared in this scope
  465.  
  466. Blink:1097:87: error: expected '(' before 'val'
  467.  
  468.  template<typename OutputT> void emitValue(Context ctx, typename ValueType<OutputT>::T val) {
  469.  
  470.                                                                                        ^
  471.  
  472. Blink:1103:26: error: expected initializer before '<' token
  473.  
  474.  template<> void emitValue<output_TICK>(Context ctx, Logic val) {
  475.  
  476.                           ^
  477.  
  478. Blink:1108:17: error: 'Context' was not declared in this scope
  479.  
  480.  State* getState(Context ctx) {
  481.  
  482.                  ^
  483.  
  484. Blink:1108:30: error: expected ',' or ';' before '{' token
  485.  
  486.  State* getState(Context ctx) {
  487.  
  488.                               ^
  489.  
  490. Blink:1112:15: error: variable or field 'evaluate' declared void
  491.  
  492.  void evaluate(Context ctx) {
  493.  
  494.                ^
  495.  
  496. Blink:1112:15: error: 'Context' was not declared in this scope
  497.  
  498. Blink:1148:50: error: expected nested-name-specifier before 'T'
  499.  
  500.  template<typename PinT> struct ValueType { using T = void; };
  501.  
  502.                                                   ^
  503.  
  504. Blink:1148:50: error: using-declaration for non-member at class scope
  505.  
  506. Blink:1148:52: error: expected ';' before '=' token
  507.  
  508.  template<typename PinT> struct ValueType { using T = void; };
  509.  
  510.                                                     ^
  511.  
  512. Blink:1148:52: error: expected unqualified-id before '=' token
  513.  
  514. Blink:1149:47: error: expected nested-name-specifier before 'T'
  515.  
  516.  template<> struct ValueType<input_EN> { using T = Logic; };
  517.  
  518.                                                ^
  519.  
  520. Blink:1149:47: error: using-declaration for non-member at class scope
  521.  
  522. Blink:1149:49: error: expected ';' before '=' token
  523.  
  524.  template<> struct ValueType<input_EN> { using T = Logic; };
  525.  
  526.                                                  ^
  527.  
  528. Blink:1149:49: error: expected unqualified-id before '=' token
  529.  
  530. Blink:1150:49: error: expected nested-name-specifier before 'T'
  531.  
  532.  template<> struct ValueType<input_IVAL> { using T = Number; };
  533.  
  534.                                                  ^
  535.  
  536. Blink:1150:49: error: using-declaration for non-member at class scope
  537.  
  538. Blink:1150:51: error: expected ';' before '=' token
  539.  
  540.  template<> struct ValueType<input_IVAL> { using T = Number; };
  541.  
  542.                                                    ^
  543.  
  544. Blink:1150:51: error: expected unqualified-id before '=' token
  545.  
  546. Blink:1151:48: error: expected nested-name-specifier before 'T'
  547.  
  548.  template<> struct ValueType<input_RST> { using T = Logic; };
  549.  
  550.                                                 ^
  551.  
  552. Blink:1151:48: error: using-declaration for non-member at class scope
  553.  
  554. Blink:1151:50: error: expected ';' before '=' token
  555.  
  556.  template<> struct ValueType<input_RST> { using T = Logic; };
  557.  
  558.                                                   ^
  559.  
  560. Blink:1151:50: error: expected unqualified-id before '=' token
  561.  
  562. Blink:1152:50: error: expected nested-name-specifier before 'T'
  563.  
  564.  template<> struct ValueType<output_TICK> { using T = Logic; };
  565.  
  566.                                                   ^
  567.  
  568. Blink:1152:50: error: using-declaration for non-member at class scope
  569.  
  570. Blink:1152:52: error: expected ';' before '=' token
  571.  
  572.  template<> struct ValueType<output_TICK> { using T = Logic; };
  573.  
  574.                                                     ^
  575.  
  576. Blink:1152:52: error: expected unqualified-id before '=' token
  577.  
  578. Blink:1165:7: error: expected nested-name-specifier before 'Context'
  579.  
  580.  using Context = ContextObject*;
  581.  
  582.        ^
  583.  
  584. Blink:1165:7: error: 'Context' has not been declared
  585.  
  586. Blink:1165:15: error: expected ';' before '=' token
  587.  
  588.  using Context = ContextObject*;
  589.  
  590.                ^
  591.  
  592. Blink:1165:15: error: expected unqualified-id before '=' token
  593.  
  594. Blink:1167:62: error: template declaration of 'typename xod::xod__core__clock::ValueType<PinT>::T xod::xod__core__clock::getValue'
  595.  
  596.  template<typename PinT> typename ValueType<PinT>::T getValue(Context ctx) {
  597.  
  598.                                                               ^
  599.  
  600. Blink:1167:62: error: 'Context' was not declared in this scope
  601.  
  602. Blink:1174:26: error: expected initializer before '<' token
  603.  
  604.  template<> Logic getValue<input_EN>(Context ctx) {
  605.  
  606.                           ^
  607.  
  608. Blink:1177:27: error: expected initializer before '<' token
  609.  
  610.  template<> Number getValue<input_IVAL>(Context ctx) {
  611.  
  612.                            ^
  613.  
  614. Blink:1180:26: error: expected initializer before '<' token
  615.  
  616.  template<> Logic getValue<input_RST>(Context ctx) {
  617.  
  618.                           ^
  619.  
  620. Blink:1183:26: error: expected initializer before '<' token
  621.  
  622.  template<> Logic getValue<output_TICK>(Context ctx) {
  623.  
  624.                           ^
  625.  
  626. Blink:1187:45: error: template declaration of 'bool xod::xod__core__clock::isInputDirty'
  627.  
  628.  template<typename InputT> bool isInputDirty(Context ctx) {
  629.  
  630.                                              ^
  631.  
  632. Blink:1187:45: error: 'Context' was not declared in this scope
  633.  
  634. Blink:1194:29: error: expected initializer before '<' token
  635.  
  636.  template<> bool isInputDirty<input_EN>(Context ctx) {
  637.  
  638.                              ^
  639.  
  640. Blink:1197:29: error: expected initializer before '<' token
  641.  
  642.  template<> bool isInputDirty<input_RST>(Context ctx) {
  643.  
  644.                              ^
  645.  
  646. Blink:1201:43: error: variable or field 'emitValue' declared void
  647.  
  648.  template<typename OutputT> void emitValue(Context ctx, typename ValueType<OutputT>::T val) {
  649.  
  650.                                            ^
  651.  
  652. Blink:1201:43: error: 'Context' was not declared in this scope
  653.  
  654. Blink:1201:87: error: expected '(' before 'val'
  655.  
  656.  template<typename OutputT> void emitValue(Context ctx, typename ValueType<OutputT>::T val) {
  657.  
  658.                                                                                        ^
  659.  
  660. Blink:1207:26: error: expected initializer before '<' token
  661.  
  662.  template<> void emitValue<output_TICK>(Context ctx, Logic val) {
  663.  
  664.                           ^
  665.  
  666. Blink:1212:17: error: 'Context' was not declared in this scope
  667.  
  668.  State* getState(Context ctx) {
  669.  
  670.                  ^
  671.  
  672. Blink:1212:30: error: expected ',' or ';' before '{' token
  673.  
  674.  State* getState(Context ctx) {
  675.  
  676.                               ^
  677.  
  678. Blink:1216:15: error: variable or field 'evaluate' declared void
  679.  
  680.  void evaluate(Context ctx) {
  681.  
  682.                ^
  683.  
  684. Blink:1216:15: error: 'Context' was not declared in this scope
  685.  
  686. Blink:2361:28: error: expected '}' before end of line
  687.  
  688.  #pragma GCC diagnostic push
  689.  
  690.                             ^
  691.  
  692. Blink:2361:28: error: expected '}' before end of line
  693.  
  694. Blink:2361:28: error: expected declaration before end of line
  695.  
  696. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino: In instantiation of 'static xod::Iterator<T> xod::Iterator<T>::nil() [with T = char]':
  697.  
  698. C:\Users\Ori\AppData\Local\Temp\arduino_modified_sketch_226482\Blink.ino:326:74:   required from here
  699.  
  700. Blink:142:54: error: use of deleted function 'xod::Iterator<T>::Iterator(const xod::Iterator<T>&) [with T = char]'
  701.  
  702.          return Iterator<T>(new detail::NilCursor<T>());
  703.  
  704.                                                       ^
  705.  
  706. Blink:154:5: error: declared here
  707.  
  708.      Iterator(const Iterator& that) = delete;
  709.  
  710.      ^
  711.  
  712. exit status 1
  713. template argument 1 is invalid
  714.  
  715. This report would have more information with
  716. "Show verbose output during compilation"
  717. option enabled in File -> Preferences.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement