mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-18 00:33:03 +00:00
fix: copyable instead of copiable
Reported by Frank Heckenbach. http://lists.gnu.org/archive/html/bug-bison/2019-05/msg00020.html * data/skeletons/lalr1.cc, doc/bison.texi: here.
This commit is contained in:
@@ -218,7 +218,7 @@ m4_define([b4_shared_declarations],
|
|||||||
]b4_token_constructor_define[
|
]b4_token_constructor_define[
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/// This class is not copiable.
|
/// This class is not copyable.
|
||||||
]b4_parser_class[ (const ]b4_parser_class[&);
|
]b4_parser_class[ (const ]b4_parser_class[&);
|
||||||
]b4_parser_class[& operator= (const ]b4_parser_class[&);
|
]b4_parser_class[& operator= (const ]b4_parser_class[&);
|
||||||
|
|
||||||
|
|||||||
@@ -11568,7 +11568,7 @@ Instead of using the built-in types you may use the @code{%define} variable
|
|||||||
The requirements over your @var{LocationType} are:
|
The requirements over your @var{LocationType} are:
|
||||||
@itemize
|
@itemize
|
||||||
@item
|
@item
|
||||||
it must be copiable;
|
it must be copyable;
|
||||||
|
|
||||||
@item
|
@item
|
||||||
in order to compute the (default) value of @code{@@$} in a reduction, the
|
in order to compute the (default) value of @code{@@$} in a reduction, the
|
||||||
@@ -11578,7 +11578,7 @@ parser basically runs
|
|||||||
@@$.end = @@@var{N}.end; // The location of last right-hand side symbol.
|
@@$.end = @@@var{N}.end; // The location of last right-hand side symbol.
|
||||||
@end example
|
@end example
|
||||||
@noindent
|
@noindent
|
||||||
so there must be copiable @code{begin} and @code{end} members;
|
so there must be copyable @code{begin} and @code{end} members;
|
||||||
|
|
||||||
@item
|
@item
|
||||||
alternatively you may redefine the computation of the default location, in
|
alternatively you may redefine the computation of the default location, in
|
||||||
@@ -14504,7 +14504,7 @@ London, Department of Computer Science, TR-00-12 (December 2000).
|
|||||||
@c LocalWords: Beazley's goyacc ocamlyacc SIGACT SIGPLAN colorWarning
|
@c LocalWords: Beazley's goyacc ocamlyacc SIGACT SIGPLAN colorWarning
|
||||||
@c LocalWords: setcolor rgbError colorError rgbNotice colorNotice derror
|
@c LocalWords: setcolor rgbError colorError rgbNotice colorNotice derror
|
||||||
@c LocalWords: colorOff maincolor inlineraw darkviolet darkcyan dwarning
|
@c LocalWords: colorOff maincolor inlineraw darkviolet darkcyan dwarning
|
||||||
@c LocalWords: dnotice copiable
|
@c LocalWords: dnotice copyable
|
||||||
|
|
||||||
@c Local Variables:
|
@c Local Variables:
|
||||||
@c ispell-dictionary: "american"
|
@c ispell-dictionary: "american"
|
||||||
|
|||||||
Reference in New Issue
Block a user