@@ -28,13 +28,10 @@ /** * \brief A class for storing constant strings using the \@"" literal. */ @interface OFConstantString: OFString -/** - * \brief Completes initialization of the OFConstantString - * - * This method finishes the initialization, as the constant strings created by - * the compiler are not fully initialized. - */ -- (void)finishInitialization; +{ + char *cString; + size_t cStringLength; +} @end