mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 17:49:40 +00:00
PreprocessorTest: Convert dbgprintf() => dbgln()
This commit is contained in:
parent
403b34d38e
commit
1a4136c4ac
Notes:
sideshowbarker
2024-07-18 22:11:34 +09:00
Author: https://github.com/awesomekling
Commit: 1a4136c4ac
1 changed files with 1 additions and 2 deletions
|
@ -24,7 +24,6 @@
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "AK/Forward.h"
|
|
||||||
#include <LibCore/File.h>
|
#include <LibCore/File.h>
|
||||||
#include <LibCpp/Preprocessor.h>
|
#include <LibCpp/Preprocessor.h>
|
||||||
|
|
||||||
|
@ -37,5 +36,5 @@ int main(int, char**)
|
||||||
}
|
}
|
||||||
auto content = file->read_all();
|
auto content = file->read_all();
|
||||||
Cpp::Preprocessor cpp(StringView { content });
|
Cpp::Preprocessor cpp(StringView { content });
|
||||||
dbgprintf("%s\n", cpp.process().characters());
|
dbgln("{}", cpp.process());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue