]> WPIA git - cassiopeia.git/blobdiff - src/db/mysql.cpp
fmt: Whitespace, indentation, generic source formatting
[cassiopeia.git] / src / db / mysql.cpp
index db3a7b91402fba5da76cf3bebbd1eaa3b066a9d9..cf2bb7ebf8c0d3a6b7a39bb65ccd83924bd7e5b3 100644 (file)
@@ -10,6 +10,7 @@
 std::shared_ptr<int> MySQLJobProvider::lib_ref(
     //Initializer: Store the return code as a pointer to an integer
     new int( mysql_library_init( 0, NULL, NULL ) ),
+
     //Finalizer: Check the pointer and free resources
     []( int* ref ) {
         if( !ref ) {
@@ -171,7 +172,6 @@ void MySQLJobProvider::finishJob( std::shared_ptr<Job> job ) {
     if( query( q ).first ) {
         throw "No database entry found.";
     }
-
 }
 
 void MySQLJobProvider::failJob( std::shared_ptr<Job> job ) {