cgmb / guardonce

Utilities for converting from C/C++ include guards to #pragma once and back again.
MIT License
142 stars 3 forks source link

Add support for multiple file and directory arguments #6

Closed cgmb closed 11 years ago

cgmb commented 11 years ago

A command like ./guard2once.py src/* might expand to a call like ./guard2once.py src/dir1 src/dir2 src/dir3. It would be nice to support operating on each argument given. Right now that's just an error, but the intention is obvious.

cgmb commented 11 years ago

Support for this was just added in pair of a recent commits: 1 2.