Skip to content
Snippets Groups Projects
Select Git revision
  • bf99443ecfb19144b60d44e1ecd1e99a9b901e06
  • master default protected
  • julia protected
  • 6.x protected
  • python-codegen
  • llvm-15
  • 5.x protected
  • 4.6 protected
  • uop
  • rework_pac
  • aux_vars_fix
  • julia-7.0.0
  • julia-6.4.0
  • julia-6.3.0
  • julia-6.2.0
15 results

StaticDllModel.hh

Blame
  • indent-c++ 282 B
    #!/bin/sh
    
    # Reindents the C++ source code file given in argument.
    
    if [ -z "$1" ]; then
        echo "Give a filename in argument"
        exit 1
    fi
    
    SCRIPTS_DIR=$(dirname $0)
    
    uncrustify -l CPP --replace -c ${SCRIPTS_DIR}/uncrustify.cfg $1
    emacs -batch $1 -l ${SCRIPTS_DIR}/indent-c++.el