skia2/tools/fiddle
Brian Salomon 4e1066f248 Remove SkSize& SkSize::operator=(const SkISize&)
Having it means you cannot write:

SkSize size;
float x, y;
size = {x , y};

clang allows it but GCC does not, claiming it is ambiguous between the
implicitly generated
SkSize& SkSize::operator=(const SkSize&)
  and
SkSize& SkSize::operator=(const SkISize&)

clang gives the same error if the former is explicitly declared default.

Change-Id: I3b64436ef6aa669b3d87e7f37057c5dcb4add987
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/257880
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Brian Salomon <bsalomon@google.com>
2019-12-04 17:36:06 +00:00
..
.gitignore
all_examples.cpp docs/fiddle: add "incomplete" fiddle. 2019-10-11 18:22:34 +00:00
animate.sh
disabled_examples.txt Documentation: notes on example fiddles 2019-03-19 22:26:57 +00:00
documumentation_examples_map.txt Remove MakeCrossContextFromEncoded, unused argument from ...FromPixmap 2019-08-15 17:10:28 +00:00
draw.cpp rewrite includes to not need so much -Ifoo 2019-04-24 16:27:11 +00:00
egl_context.cpp rewrite includes to not need so much -Ifoo 2019-04-24 16:27:11 +00:00
examples.cpp rewrite includes to not need so much -Ifoo 2019-04-24 16:27:11 +00:00
examples.h rewrite includes to not need so much -Ifoo 2019-04-24 16:27:11 +00:00
fiddle_main.cpp Remove SkSize& SkSize::operator=(const SkISize&) 2019-12-04 17:36:06 +00:00
fiddle_main.h rewrite includes to not need so much -Ifoo 2019-04-24 16:27:11 +00:00
make_all_examples_cpp.py Examples: compile faster 2019-04-04 15:43:59 +00:00
null_context.cpp rewrite includes to not need so much -Ifoo 2019-04-24 16:27:11 +00:00
parse-fiddle-output