I'm trying to use clip::has(clip::empty_format())
I tried the following:
#include "clip.h"
#include <iostream>
int main(int argc, char* argv[]) {
clip::clear();
std::cout << std::boolalpha << clip::has(clip::empty_format()) << std::endl;
}
But it outputs false even though directly before I clear the clipboard. Am I doing something wrong?
I'm trying to use
clip::has(clip::empty_format())I tried the following:
But it outputs
falseeven though directly before I clear the clipboard. Am I doing something wrong?