Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Formatting Bug? LongModuleFinder #11

Open
HermesBonilla opened this issue Jul 19, 2022 · 0 comments
Open

Formatting Bug? LongModuleFinder #11

HermesBonilla opened this issue Jul 19, 2022 · 0 comments

Comments

@HermesBonilla
Copy link

Hi! I was working on some of the samples and realized that there was a strange formatting error on LongModuleFinder

LongModuleFinder output:

LongModuleFinderScreenshot

The formatting issue can be seen on the right where the 2 from CL Invocation has no space between itself and Duration

Looking at the code, I see no reason why it should be formatting strangely since there are two tab escapes:

std::cout << "\t\tCL Invocation " << frontEndPassData.InvocationId << "\t\tDuration: " << frontEndPassData.Duration << " s " << std::endl;



Note: similar code can be found in the other analyzers as seen below (outputs in terminal as expected)

for (auto& frontEndPassData : sortedFrontEndPassData)
{
std::cout << "File Name: ";
std::wcout << frontEndPassData.Name;
std::cout << "\t\tCL Invocation " << frontEndPassData.InvocationId << "\t\tDuration: " << frontEndPassData.Duration << " s " << std::endl;
}

for (auto& frontEndPassData : sortedFrontEndPassData)
{
std::cout << "File Name: ";
std::wcout << frontEndPassData.Name;
std::cout << "\t\tCL Invocation " << frontEndPassData.InvocationId << "\t\tDuration: " << frontEndPassData.Duration << " s " << std::endl;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant