VSTGUI init() in VST3 SDK 3.7.2

According to the changes for 3.7.2:

VSTGUI now needs to be initialized and terminated explicitly. See VSTGUI::init()

If I use the classes bundled with the SDK 3.7.2 which use VSTGUI (like EditController), do I need to take care of this as well? Or is it already handled?

If you use these files in your projects (by default used):

public.sdk/source/main/moduleinit.cpp
public.sdk/source/vst/vstguieditor.cpp

The VSTGUI:: init/exit are automatically registered and called.

Thank you for confirming.