Skip to content

hexagonrecursion/tidy-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Known Limitations

The check is blinded by std::make_unique. Example: the following should produce a warning, but currently does not

#include <filesystem>
#include <string>
#include <memory>

class C
{
public:
    C(const std::string&) {}
};

int main()
{
    std::filesystem::path p("p");
    std::make_unique<C>(p);  // Should warn here
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published