JDK-8327246: remove use of R"(...)" raw string const

This commit is contained in:
Larry Cable 2026-02-10 15:13:11 -08:00
parent 1168798a4c
commit 28a06a0572

View File

@ -736,16 +736,7 @@ public:
class ClassesDCmd : public DCmdWithParser {
private:
static constexpr const char *desc = R"(
Print all loaded classes, classes are annotated with flags:
F = has, or inherits, a non-empty finalize method,
f = has final method,
W = methods rewritten,
C = marked with @Contended annotation,
R = has been redefined,
S = is an (App)CDS shared class,
(if -location is also specified, (either) 's' indicating static (or) 'd' indicating dynamic AOT cache locations, is appended)
)";
static constexpr const char *desc = "Print all loaded classes,\nclasses are annotated with flags:\n F = has, or inherits, a non-empty finalize method,\n f = has final method,\n W = methods rewritten,\n C = marked with @Contended annotation,\n R = has been redefined,\n S = is an (App)CDS shared class,\n (if -location is also specified, (either) 's' indicating static (or) 'd' indicating dynamic AOT cache locations, is appended)";
protected:
DCmdArgument<bool> _verbose;