cpp-static-todo
                                
                                
                                
                                    cpp-static-todo copied to clipboard
                            
                            
                            
                        Change '#pragma once' to '#include' guards
#pragma once is not guaranteed to be supported on all compilers. (https://en.wikipedia.org/wiki/Pragma_once#Portability). As to increase portability, I've changed to '#include' guards.
Up!