~ubuntu-branches/ubuntu/oneiric/lightning-extension/oneiric-security

« back to all changes in this revision

Viewing changes to mozilla/mfbt/RangedPtr.h

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-04-20 13:46:11 UTC
  • mfrom: (1.2.1)
  • mto: (1.3.1)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: package-import@ubuntu.com-20120420134611-i0dkosnbmihrd0lr
Tags: upstream-1.4+build1
ImportĀ upstreamĀ versionĀ 1.4+build1

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 *
39
39
 * ***** END LICENSE BLOCK ***** */
40
40
 
 
41
/*
 
42
 * Implements a smart pointer asserted to remain within a range specified at
 
43
 * construction.
 
44
 */
 
45
 
41
46
#ifndef mozilla_RangedPtr_h_
42
47
#define mozilla_RangedPtr_h_
43
48
 
 
49
#include "mozilla/Assertions.h"
44
50
#include "mozilla/Attributes.h"
45
51
#include "mozilla/Util.h"
46
52