Remove irrelevant print statement

This statement is only relevant in 2.8, but causes confusion in master.
I kept the 'default' label to prevent compiler warnings about unhandled
cases. The break is needed because there should be at least one statement
after 'default'.
This commit is contained in:
Sybren A. Stüvel 2018-04-18 12:22:58 +02:00
parent 0afe103269
commit 287d1924fa
Notes: blender-bot 2023-02-14 00:29:15 +01:00
Referenced by commit 9b338e8028, Merge remote-tracking branch 'origin/master' into blender2.8
1 changed files with 2 additions and 1 deletions

View File

@ -300,7 +300,8 @@ void DepsgraphNodeBuilder::build_id(ID* id) {
build_movieclip((MovieClip *)id);
break;
default:
fprintf(stderr, "Unhandled ID %s\n", id->name);
/* fprintf(stderr, "Unhandled ID %s\n", id->name); */
break;
}
}