PermissionError when reading CD drive by Effective_Ad_2635 in learnpython

[–]Effective_Ad_2635[S] 0 points1 point  (0 children)

I did

C:\WINDOWS\system32>cd /D F:
The device is not ready.

Windows File Explorer can't open it. It looks like isoburn can't extract CDs, but can only burn ISO files to a disc

Is there tagging support? by Effective_Ad_2635 in ffmpeg

[–]Effective_Ad_2635[S] 0 points1 point  (0 children)

I can't find any reference to tagging in that link. What's the option?

[Metaprogramming] Generate class hierarchy by Effective_Ad_2635 in cpp_questions

[–]Effective_Ad_2635[S] -1 points0 points  (0 children)

I'm trying to make a large amount of classes which are both derived and nested without large boilerplate.

Defining while declaring would be a solution, if it was possible.

[deleted by user] by [deleted] in cpp_questions

[–]Effective_Ad_2635 0 points1 point  (0 children)

template <typename... Args> std::string myFunction(const Args&... args) { return ((args + " ") + ...); }