You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After #188 the following source code is parsed incorrectly by Boost.Wave:
#pragma some(some)
#include"path"
The line end at the end of pragma line is "eaten" and next token after right paren returned is literally #include "path". Adding another newline after the #pragma line fixes this.
This started in boost 1.84.0, apparently after #188.
The text was updated successfully, but these errors were encountered:
After #188 the following source code is parsed incorrectly by Boost.Wave:
The line end at the end of pragma line is "eaten" and next token after
right paren
returned is literally#include "path"
. Adding another newline after the#pragma
line fixes this.This started in boost 1.84.0, apparently after #188.
The text was updated successfully, but these errors were encountered: