SlickEdit Community
SlickEdit Product Discussion => SlickEdit® => Topic started by: rjpontefract on May 03, 2022, 02:52:47 am
-
Running SE 26.0.2.1 on macOS 11.6.5.
I have a buffer containing a single file C++project. The program simply outputs a string to stdout with no trailing \n or std::endl
#include <iostream>
int main(int argc, char **argv)
{
std::cout << "HELLO";
return 0;
}
On the previous version of SE the output would appear in the build window when executed. As there's no newline the prompt would appear after the output on the same line.
With SE 26.0.2.1 there is no output from the program shown in the build window.
If I add a \n or std::endl I get the expected output.
-
Reproduced. We will look into this.
-
Do you have an Intel or M1 processor or both?
-
Hi Clark, it's an Intel CPU, I don't have any M1 Macs
-
Download the installer below for the fix:
http://support.slickedit.com/outbound/2602/se_26000201_mac-intel-2022-05-03.dmg (http://support.slickedit.com/outbound/2602/se_26000201_mac-intel-2022-05-03.dmg)
-
Hi Clark, that works fine, thanks for the quick response, it's appreciated.