Back Midas Rome Roody Rootana
  Midas DAQ System  Not logged in ELOG logo
Entry  20 Mar 2025, Konstantin Olchanski, Bug Report, please fix compiler warning 
    Reply  21 Mar 2025, Stefan Ritt, Bug Report, please fix compiler warning 
       Reply  25 Mar 2025, Konstantin Olchanski, Bug Report, please fix compiler warning 
Message ID: 2985     Entry time: 21 Mar 2025     In reply to: 2965     Reply to this: 3002
Author: Stefan Ritt 
Topic: Bug Report 
Subject: please fix compiler warning 
> Unnamed person who added this clever bit of c++ coding, please fix this compiler warning. Stock g++ on Ubuntu LTS 24.04. Thanks in advance!
> 
> /home/olchansk/git/midas/src/system.cxx: In function ‘std::string ss_execs(const char*)’:
> /home/olchansk/git/midas/src/system.cxx:2256:43: warning: ignoring attributes on template argument ‘int (*)(FILE*)’ [-Wignored-attributes]
>  2256 |    std::unique_ptr<FILE, decltype(&pclose)> pipe(popen(cmd, "r"), pclose);
> 
> K.O.

Replace the code with:

   auto pclose_deleter = [](FILE* f) { pclose(f); };
   auto pipe = std::unique_ptr<FILE, decltype(pclose_deleter)>(
      popen(cmd, "r"),
      pclose_deleter
   );


Hope this is now warning-free.

Stefan
ELOG V3.1.4-2e1708b5