~drizzle-trunk/libdrizzle/jenkins-Libdrizzle-110

« back to all changes in this revision

Viewing changes to libdrizzle/sha1.cc

  • Committer: Continuous Integration
  • Date: 2013-05-12 22:57:40 UTC
  • mfrom: (122.1.1 libdrizzle-5.1)
  • Revision ID: ci@drizzle.org-20130512225740-n9n9673m65kb4ogf
Merge lp:~brianaker/libdrizzle/ddm4-update-may Build: jenkins-Libdrizzle-107

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include "config.h"
25
25
#include "libdrizzle/common.h"
26
26
 
 
27
#pragma GCC diagnostic push
 
28
#pragma GCC diagnostic ignored "-Wunsafe-loop-optimizations"
 
29
 
27
30
#define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
28
31
 
29
32
/*
178
181
                memset(context, 0, sizeof(*context));
179
182
        }
180
183
}
 
184
 
 
185
#pragma GCC diagnostic pop